On 21.05.2008, at 22:00, David Ibbitson wrote: > I'm trying to compile FLTK 1.1.9 (Rev 6106) > for MacOSX 10.4 and get Universal Binaries.
Funny, I just solved this a few moments ago: Just use: ./configure --with-archflags="-mmacosx-version-min=10.4 -arch i386 - arch ppc" You should add --enable-threads, but --enable-xft will not do anything on OS X. You can also --enable-quartz to get antialiased font and line rendering. None of the environment flags are required. > Undefined symbols for architecture ppc: > "_strtod$UNIX2003", referenced from: This indicates that you are trying to link a 10.4 executable with 10.5 libraries (or vice versa, I don't recall). Matthias ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

