temporarily disable elisp exception tests
[bpt/guile.git] / autogen.sh
index d125d9f..2e39fb5 100755 (executable)
@@ -15,26 +15,24 @@ autoconf --version
 echo ""
 automake --version
 echo ""
-libtool --version
+
+# Typical MacOS X installations rename 'libtoolize' to 'glibtoolize', so
+# adjust to that.
+if test "`uname -s`" = "Darwin"; then
+  glibtoolize --version
+else
+  libtoolize --version
+fi
+
 echo ""
-${M4:-/usr/bin/m4} --version
+${M4:-m4} --version
 echo ""
-gnulib-tool --version
+flex --version
 echo ""
 
 ######################################################################
 ### update infrastructure
 
-gnulib-tool --update &&                                \
 autoreconf -i --force --verbose
 
-echo "guile-readline..."
-(cd guile-readline && ./autogen.sh)
-
-# Copy versions of config.guess and config.sub from Guile's repository to
-# build-aux and guile-readline.
-cp -f config.guess config.sub build-aux/
-cp -f config.guess config.sub guile-readline/
-
 echo "Now run configure and make."
-echo "You must pass the \`--enable-maintainer-mode' option to configure."