Hi there.
First of all I am very new to Linux and the problem I have is I think beyond me for the moment.
Basically I run a Distributed Computing project called Folding@Home on Ubuntu Edgy [6.10 AMD64]. In order to monitor my client's progress I am trying to install a small utility called FahMon, however I am being thwarted by a possible wxGTK issue.
I downloaded and installed wxGTK-2.8.0 using the following commands:
After that I used the command wx-config --list as a means of testing if it installed. The output is
Now, the next step in installing FahMon [Exact file is here [src.tar.bz2]]is to go into the src directory and run scons
Unfortunately this process is terminated due to errors relating to wx components. The full output is as follows:
I have asked about this on the wxWidgets forums but so far I haven't discovered anything. As per the title it could be either wxWidgets or Scons. Any help in shedding some light on the cause of this error would be great.
SiriusB
First of all I am very new to Linux and the problem I have is I think beyond me for the moment.
Basically I run a Distributed Computing project called Folding@Home on Ubuntu Edgy [6.10 AMD64]. In order to monitor my client's progress I am trying to install a small utility called FahMon, however I am being thwarted by a possible wxGTK issue.
I downloaded and installed wxGTK-2.8.0 using the following commands:
Code:
mkdir buildgtk
cd buildgtk
../configure --with-gtk --enable-unicode
make
sudo make install
sudo ldconfig
After that I used the command wx-config --list as a means of testing if it installed. The output is
Default config is gtk2-unicode-release-2.8
Default config will be used for output
Now, the next step in installing FahMon [Exact file is here [src.tar.bz2]]is to go into the src directory and run scons
Unfortunately this process is terminated due to errors relating to wx components. The full output is as follows:
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
g++ -o clientDialog.o -c -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -pthread -O2 -D_FAHMON_LINUX_ -Wall -Wno-strict-aliasing -I/usr/local/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/local/include/wx-2.8 -I/home/aeternum/Downloads/FahMon/include clientDialog.cpp
clientDialog.cpp: In constructor 'ClientDialog::ClientDialog(wxWindow*)':
clientDialog.cpp:68: error: invalid use of undefined type 'struct wxButton'
/usr/local/include/wx-2.8/wx/sizer.h:23: error: forward declaration of 'struct wxButton'
clientDialog.cpp:83: error: invalid use of undefined type 'struct wxButton'
/usr/local/include/wx-2.8/wx/sizer.h:23: error: forward declaration of 'struct wxButton'
clientDialog.cpp:85: error: invalid use of undefined type 'struct wxButton'
/usr/local/include/wx-2.8/wx/sizer.h:23: error: forward declaration of 'struct wxButton'
scons: *** [clientDialog.o] Error 1
scons: building terminated because of errors.
I have asked about this on the wxWidgets forums but so far I haven't discovered anything. As per the title it could be either wxWidgets or Scons. Any help in shedding some light on the cause of this error would be great.
SiriusB