home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / textutils-1.11-src.lha / textutils-1.11 / configure.in < prev    next >
Encoding:
Text File  |  1994-11-13  |  855 b   |  41 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(src/fold.c)
  3. AC_CONFIG_HEADER(config.h)
  4.  
  5. dnl Checks for programs.
  6. AC_PROG_CC
  7. AC_PROG_INSTALL
  8. AC_PROG_MAKE_SET
  9. AC_PROG_CPP
  10. AC_PROG_GCC_TRADITIONAL
  11. AC_PROG_RANLIB
  12. AC_AIX
  13. AC_MINIX
  14. AC_ISC_POSIX
  15.  
  16. dnl Checks for header files.
  17. AC_CHECK_HEADERS(limits.h string.h memory.h fcntl.h unistd.h)
  18. AC_HEADER_STAT
  19. AC_HEADER_STDC
  20.  
  21. dnl Checks for typedefs, structures, and compiler characteristics.
  22. AC_CHECK_SIZEOF(long)
  23. AC_C_BIGENDIAN
  24. AC_C_CONST
  25. AC_C_LONG_DOUBLE
  26. AC_HEADER_DIRENT
  27. AC_STRUCT_ST_BLKSIZE
  28. AC_TYPE_OFF_T
  29. AC_TYPE_SIGNAL
  30. AC_TYPE_SIZE_T
  31.  
  32. dnl Checks for library functions.
  33. AC_CHECK_FUNCS(strerror isascii)
  34. AC_FUNC_ALLOCA
  35. AC_FUNC_MEMCMP
  36. AC_FUNC_VPRINTF
  37. AC_REPLACE_FUNCS(bcopy memset stpcpy strtoul)
  38.  
  39. AC_OUTPUT(Makefile doc/Makefile lib/Makefile man/Makefile src/Makefile,
  40. [date > stamp-h])dnl
  41.