summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>1992-09-16 14:01:15 +0000
committerKarl Berry <karl@freefriends.org>1992-09-16 14:01:15 +0000
commitf3ba347b8c8397b3f560e46e4bd34d4791b2e3ea (patch)
treee2f6061d15f7c7d8222601bccbe6b97aed37a4a9
parentd146c864e8d8cc82e96d722337253dd5a3a803b8 (diff)
downloadgnulib-f3ba347b8c8397b3f560e46e4bd34d4791b2e3ea.tar.gz
Initial revision
-rw-r--r--configure.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/configure.in b/configure.in
new file mode 100644
index 0000000000..6c5a7ed9b7
--- /dev/null
+++ b/configure.in
@@ -0,0 +1,24 @@
+dnl Process this file with autoconf to produce a configure script.
+AC_INIT(regex.c)
+
+AC_PROG_CC
+AC_PROG_INSTALL
+
+dnl I'm not sure if AC_AIX and AC_DYNIX_SEQ are really necessary. The
+dnl Autoconf documentation isn't specific about which BSD functions they
+dnl provide.
+AC_AIX
+AC_DYNIX_SEQ
+AC_ISC_POSIX
+AC_MINIX
+
+AC_STDC_HEADERS
+AC_USG
+
+AC_ALLOCA
+dnl We would like to use AC_CONST, but then the test on __STDC__ fails,
+dnl and any package which does *not* use AC_CONST loses.
+
+AC_PREFIX(gcc)
+
+AC_OUTPUT(Makefile doc/Makefile test/Makefile)