From: <php...@li...> - 2006-06-20 18:23:29
|
Hi, while bootstrapping the autoconf files (in server/configure.gnu.in), the configure script already creates a symlink from the system libtool into the current working directory. So I think all we need to do is to check if glibtool is available, check if it is indeed GNU libtool and then symlink glibtool into the current working directory. Something like this: { { libtool=glibtool; glibtool --version } || { libtool=libtool; libtool --version } } && { ln -s `which $libtool` libtool; ${libtool}ize -f } The above change assumes that the Mac version of "libtoolize" is called "glibtoolize", I don't know if it exists. > 1. libtool vs. glibtool > > The bridge requires GNU libtool version 1.4.3 or > higher, which exists on > MacOS 10.4.6 as glibtool. There is ANOTHER utility > called libtool on the > Mac, which is NOT the right tool. > > To solve this issue, make glibtool masquerade as > libtool: > > sudo mv /usr/bin/libtool ~/a.safe.tmp.dir > sudo ln -s /usr/bin/libtool /usr/bin/glibtool Regards, Jost Boekemeier ___________________________________________________________ Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de |