Added AC_PREREQ(2.50) and minimally changed for
authorMarius Vollmer <mvo@zagadka.de>
Sun, 3 Jun 2001 00:59:23 +0000 (00:59 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Sun, 3 Jun 2001 00:59:23 +0000 (00:59 +0000)
autoconf 2.50.  This is mostly so that the `transparent autoconf
wrapper' on Debian picks the right version of autoconf.

guile-readline/configure.in

index 1b09840..a085dbc 100644 (file)
@@ -1,4 +1,7 @@
-AC_INIT(readline.c)
+AC_PREREQ(2.50)
+
+AC_INIT
+AC_CONFIG_SRCDIR([readline.c])
 . $srcdir/../GUILE-VERSION
 PACKAGE=guile-readline
 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
@@ -98,4 +101,5 @@ fi
 
 AC_CHECK_FUNCS(strdup)
 
-AC_OUTPUT(Makefile)
+AC_CONFIG_FILES(Makefile)
+AC_OUTPUT