home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / sed-2.05-src.lha / sed-2.05 / configure.in < prev    next >
Text File  |  1994-08-18  |  437b  |  20 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(sed.c)
  3.  
  4. # We want these before the checks, so the checks can modify their values.
  5. test -z "$CFLAGS" && CFLAGS=-O2 AC_SUBST(CFLAGS)
  6. test -z "$LDFLAGS" && LDFLAGS= AC_SUBST(LDFLAGS)
  7.  
  8. AC_PROG_CC
  9. AC_PROG_CPP
  10. AC_PROG_INSTALL
  11. AC_MINIX
  12. AC_ISC_POSIX
  13. AC_STDC_HEADERS
  14. AC_HAVE_HEADERS(string.h)
  15. AC_VPRINTF
  16. AC_HAVE_FUNCS(bcopy memcpy)
  17. AC_CONST
  18. AC_ALLOCA
  19. AC_OUTPUT(Makefile)
  20.