home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #1 / MONSTER.ISO / prog / gen / regex011.taz / regex011 / regex-0.11 / configure.in < prev    next >
Encoding:
Text File  |  1992-09-16  |  540 b   |  25 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(regex.c)
  3.  
  4. AC_PROG_CC
  5. AC_PROG_INSTALL
  6.  
  7. dnl I'm not sure if AC_AIX and AC_DYNIX_SEQ are really necessary.  The
  8. dnl Autoconf documentation isn't specific about which BSD functions they
  9. dnl provide.
  10. AC_AIX
  11. AC_DYNIX_SEQ
  12. AC_ISC_POSIX
  13. AC_MINIX
  14.  
  15. AC_STDC_HEADERS
  16. AC_USG
  17.  
  18. AC_ALLOCA
  19. dnl We would like to use AC_CONST, but then the test on __STDC__ fails,
  20. dnl and any package which does *not* use AC_CONST loses.
  21.  
  22. AC_PREFIX(gcc)
  23.  
  24. AC_OUTPUT(Makefile doc/Makefile test/Makefile)
  25.