On Wednesday, August 20, 2003, at 02:51 PM, Guy Harris wrote:
The attached text file is the output of configure and make.
A significant difference between your configure output in mine is:
Mine:
checking whether GLib supports loadable modules... no
Yours:
checking whether GLib supports loadable modules... yes
Where did you get GLib from? Was it from Fink? (They might've added
Mac OS X run-time linking support to -lgmodule.)
This caused it to try to build plugins, but it was doing that in a
somewhat odd fashion, given that the plugins aren't shared libraries,
they're run-time-loaded modules (which, on Mac OS X, aren't the same
as shared libraries, unlike the way they are on most other UNIXes and
on Windows).
A workaround would be to re-run configure with "--without-plugins";
I'll investigate further to see if I can figure out why (g)libtool(?)
is behaving oddly here.
Looks like Fink is the source.
%fink list -i GLib
Information about 1310 packages read in 2 seconds.
i glib 1.2.10-8 Common C routines used by Gtk+ and
other ...
i glib-shlibs 1.2.10-8 Common C routines used by Gtk+ and
other ...
configure --without-plugins worked. Thanks
Kevin