> pawel wrote: > > > > What do I need to do to bring those libs in? (Sorry I know this is giving > > away how green i am but please bare with me.) > > You wrote in your first post that you're using Code::Blocks. > I'm sorry, I can't help with this. Maybe someone else can > help you with this. > > If you can try to compile and link with the commandline version > of gcc/g++, then you should try the following: > > after unpacking the source tree (obviously you did this already, > or do you use pre-installed packages only), you should do: > > autoconf > ../configure [maybe with options, use ./configure --help] > make > > optional: > sudo make install > > ../configure will output a summary at the end of the run. If anything > fails, please post this summary and your error messages here. > If it works, please tell us as well ;-) > > Albrecht
I found another forum that you have contributed to on a very similar theme, and you gave the advice of trying: g++ -o hello hello.cxx `fltk(2)-config --cxxflags --ldflags` In code::blocks there is a Linker Options box that had: 'fltk-config --ldstaticflags' So i replaced that with your suggestion (minus the "(2)", and it compiles and runs happily. Here in Australia there is saying: "If it aint broke don't fix it." So I'll leave it at that. thanks and regards, Pawel. _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

