home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / bison-1.25-base.tgz / bison-1.25-base.tar / fsf / bison / configure.in < prev    next >
Text File  |  1994-11-10  |  426b  |  23 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(reduce.c)
  3.  
  4. dnl Checks for programs.
  5. AC_PROG_CC
  6. AC_PROG_INSTALL
  7.  
  8. AC_MINIX
  9. AC_ISC_POSIX
  10.  
  11. dnl Checks for header files.
  12. AC_HEADER_STDC
  13. AC_CHECK_HEADERS(string.h stdlib.h memory.h)
  14.  
  15. dnl Checks for typedefs, structures, and compiler characteristics.
  16. AC_C_CONST
  17.  
  18. dnl Checks for library functions.
  19. AC_FUNC_ALLOCA
  20. AC_CHECK_FUNCS(strerror)
  21.  
  22. AC_OUTPUT(Makefile)
  23.