temporarily disable elisp exception tests
[bpt/guile.git] / autogen.sh
index 47656cb..2e39fb5 100755 (executable)
@@ -15,9 +15,19 @@ 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:-m4} --version
 echo ""
-${M4:-/usr/bin/m4} --version
+flex --version
 echo ""
 
 ######################################################################
@@ -25,13 +35,4 @@ echo ""
 
 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."