home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / inetutils-1.2-src.tgz / tar.out / fsf / inetutils / glob / configure.in < prev    next >
Text File  |  1996-09-28  |  509b  |  20 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(fnmatch.c)        dnl A distinctive file to look for in srcdir.
  3. AC_PREREQ(2.1)            dnl Minimum Autoconf version required.
  4. AC_PROG_CC
  5. AC_CHECK_PROG(AR, ar, ar, ar)
  6. AC_PROG_RANLIB
  7. AC_PROG_CPP            dnl Later checks need this.
  8. dnl These two want to come early.
  9. AC_AIX
  10. AC_MINIX
  11. AC_ISC_POSIX
  12. AC_CONST
  13. AC_HEADER_STDC
  14. AC_CHECK_HEADERS(memory.h unistd.h string.h)
  15. AC_HEADER_DIRENT
  16. AC_FUNC_CLOSEDIR_VOID
  17. AC_FUNC_ALLOCA
  18. AC_FUNC_STRCOLL
  19. AC_OUTPUT(Makefile)
  20.