home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / remind-03.00.19.tgz / remind-03.00.19.tar / remind-03.00.19 / configure.in < prev    next >
Text File  |  1998-02-15  |  926b  |  47 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. dnl $Id: configure.in,v 1.5 1998/02/16 03:41:39 dfs Exp $
  3.  
  4. AC_INIT(src/amiga.c)
  5.  
  6. cat <<'EOF'
  7.  
  8. **********************
  9. *                    *
  10. * Configuring REMIND *
  11. *                    *
  12. **********************
  13.  
  14. EOF
  15.  
  16. AC_CONFIG_HEADER(src/config.h)
  17.  
  18. dnl Checks for programs.
  19. AC_PROG_CC
  20. AC_PROG_INSTALL
  21. AC_PROG_LN_S
  22. AC_PROG_MAKE_SET
  23.  
  24. dnl Checks for libraries.
  25. dnl Replace `main' with a function in -lm:
  26.  
  27. AC_CHECK_LIB(m, sqrt)
  28.  
  29. dnl Checks for header files.
  30. AC_HEADER_STDC
  31. AC_CHECK_HEADERS(sys/file.h sys/time.h sys/types.h unistd.h malloc.h stdarg.h stdlib.h pwd.h)
  32.  
  33. dnl Checks for typedefs, structures, and compiler characteristics.
  34. AC_C_CONST
  35. AC_STRUCT_TM
  36.  
  37. dnl Checks for library functions.
  38. AC_TYPE_SIGNAL
  39. AC_TYPE_PID_T
  40. AC_TYPE_UID_T
  41. AC_FUNC_UTIME_NULL
  42. AC_HEADER_TIME
  43. AC_FUNC_VPRINTF
  44. AC_CHECK_FUNCS(mktime putenv strstr timegm difftime)
  45.  
  46. AC_OUTPUT(src/Makefile)
  47.