view configure.in @ 4348:fc8667232bcc

Ensure we use gnulib mktime rather than glibc's mktime, on hosts where mktime isn't the inverse of localtime (negative time_t).
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 04 Jun 2003 20:09:47 +0000
parents be4a50a68d30
children
line wrap: on
line source

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

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 m4/Makefile lib/Makefile)