view configure.in @ 33:b9911aed06bc

*** empty log message ***
author Jim Blandy <jimb@red-bean.com>
date Thu, 24 Dec 1992 06:48:09 +0000
parents 7f41c8e3de0d
children 2d78be5ca726
line wrap: on
line source

dnl Process this file with autoconf to produce a configure script.
AC_INIT(regex.c)

dnl Because regex may or may not be used with Autoconf, we need to know.
AC_DEFINE(USING_AUTOCONF)

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_HAVE_HEADERS(string.h)

AC_ALLOCA
AC_CONST

AC_PREFIX(gcc)

AC_OUTPUT(Makefile doc/Makefile test/Makefile)