Compile software under MacOSX

Anicharn

Registered
Hello all,

first of all let me appologize if I am posting a question to a problem that has been solved before, but I cannot seem to be able to search the forums, and this is the only place, I found, that seemed to be able to help me.

Well the problem is I cannot seem to compile any software under MacOS.
I got Xcode 2.2 installed and I get no errors during ./configure
but as soon as I run "make" I get the following lines (trying to compile ANY *nix software, becides Fink stuff)
Code:
make[3]: Nothing to be done for `all'.
(...)
Resource.hh: In constructor 'Resource<T>::Resource(ResourceManager&, T, const std::string&, const std::string&)':
Resource.hh:74: error: invalid use of undefined type 'struct ResourceManager'
Resource.hh:59: error: forward declaration of 'struct ResourceManager'
Resource.hh: In destructor 'virtual Resource<T>::~Resource()':
Resource.hh:77: error: invalid use of undefined type 'struct ResourceManager'
Resource.hh:59: error: forward declaration of 'struct ResourceManager'
Timer.hh: At global scope:
Timer.hh:43: warning: 'class TimeoutHandler' has virtual functions but non-virtual destructor
Toolbar.hh:173: warning: 'class Toolbar::HideHandler' has virtual functions but non-virtual destructor
FbTk/SignalHandler.hh:32: warning: 'class FbTk::SignalEventHandler' has virtual functions but non-virtual destructor
make[3]: *** [Basemenu.o] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
(this make part was taken from a fluxbox make)

Honestly I have not a slightest idea how to get around it.

I would be really thankful for any ideas you might have :)

Greetings Ani
 
did you make the .hh files? I recognize the code for c++ classes programming....looks like there are a bunch of syntax errors in some of the files listed. It tells you what file at what line the compiler is having problems with
 
well what I basically did was
cd /fluxbox && ./configure && make && make install
oh and I probably should say what system I run >_< its a ibook G4 with 10.4.3
well yeah.. tbh I am a total n00b in c++ programming.
thank you for the answer :)
Ani
 
Back
Top