Removed AC_PROG_INSTALL & AC_PROG_MAKE_SET since they are called from AM_INIT.
[riece] / configure.ac
index 6518402..3b59ea5 100644 (file)
@@ -1,10 +1,7 @@
-AC_INIT(configure.ac)
-AC_PREREQ(2.50)
-AM_INIT_AUTOMAKE(riece, 1.0.5)
-
-AC_ISC_POSIX
-AC_PROG_INSTALL
-AC_PROG_MAKE_SET
+AC_INIT
+AC_CONFIG_SRCDIR([configure.ac])
+AC_PREREQ(2.59)
+AM_INIT_AUTOMAKE(riece, 1.0.7)
 
 AC_CHECK_EMACS
 AC_PATH_LISPDIR
@@ -12,11 +9,8 @@ AC_PATH_PACKAGEDIR
 
 AM_CONDITIONAL(XEMACS, test ${EMACS_FLAVOR} = xemacs)
 
-AC_EMACS_LISP(mule, (if (featurep (quote mule)) \"mule\" \"nomule\"))
-AM_CONDITIONAL(XEMACS_NOMULE, test ${EMACS_FLAVOR} = xemacs-nomule -a \
-       $mule = mule)
-
-AC_OUTPUT(Makefile \
+AC_CONFIG_FILES([Makefile \
 lisp/Makefile
 lisp/test/Makefile
-doc/Makefile)
+doc/Makefile])
+AC_OUTPUT