Modified:
trunk/autogen.sh
Log:
MacOS X 10.4 autoreconf has 'glibtoolize' - why we're using libtool at all,
i'm not sure i agree with
Modified: trunk/autogen.sh
==============================================================================
--- trunk/autogen.sh (original)
+++ trunk/autogen.sh Sat Sep 6 23:13:17 2008
@@ -1,2 +1,7 @@
#!/bin/sh
-autoreconf --force --install
+
+if [ "x`uname -s`" = "xDarwin" ]; then
+ aclocal && glibtoolize --automake && autoconf && autoheader &&
automake -fac
+else
+ autoreconf --force --install
+fi