Remove old .cvsignore, add m4 files to .gitignore.
[portablexdr.git] / configure.ac
index 95d2f2b..1a61e2f 100644 (file)
@@ -1,17 +1,22 @@
-AC_INIT(portablexdr, 5.0.0)
+AC_INIT(portablexdr, 4.9.1)
 AM_INIT_AUTOMAKE
 
 AC_CONFIG_HEADERS([config.h])
 
+AC_CONFIG_MACRO_DIR([m4])
+
 AC_CANONICAL_HOST
 AC_PROG_CC
-AC_CHECK_PROGS(AR, ar)
+AM_PROG_CC_C_O
+
 AC_PROG_INSTALL
 AC_PROG_LIBTOOL
 
 AC_PROG_LEX
 AC_PROG_YACC
 
+AC_CHECK_PROGS(AR, ar)
+
 dnl Look for an external 'cpp' program which can run on a file with any
 dnl extension.  The normal CPP can only run on files with a '.c'
 dnl extension, therefore we prefer to use /usr/bin/cpp if it exists.