Loic wrote:
> [..] I included in my project the FLTK source tree (only necessary files to 
> build the library).
> I then created an configure.ac and makefile.am in order to compile the 
> project [..]

        It sounds like you made your own build files.

        Assuming the stock install of FLTK builds OK with the default commands,
        compare the stock build lines to your custom build to see what's wrong.

        The references to X11 in your build on OSX would suggest you're trying
        to build with the X11 libraries on OSX which I don't think is supported.

        You can enable the stock build to print all the compile/link lines
        by commenting out the ".SILENT" line in the makeinclude file, followed
        by a 'make clean; make'.

        That would be the best way to see what's different.
        Be sure to use ./configure to make all the settings you need
        (universal build flags, FLTK vs. OS jpeg/png libs, etc).
        Note that running ./configure overwrites the makeinclude,
        so remove the .SILENT line from makeinclude /after/ you run configure.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to