home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / forut062.zip / ForUtil-0.62 / configure.in < prev    next >
Text File  |  1996-08-28  |  840b  |  33 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(lib/SplitPath.c)
  3.  
  4. dnl Checks for programs.
  5. AC_PROG_CC
  6. AC_PROG_MAKE_SET
  7. AC_PROG_RANLIB
  8. AC_PROG_LEX
  9. AC_PROG_INSTALL
  10.  
  11. dnl Checks for libraries.
  12. dnl Replace `main' with a function in -lgdbm:
  13. AC_CHECK_LIB(gdbm, gdbm_fetch, , 
  14. AC_MSG_WARN(You need gdbm in order for the common stuff to work.))
  15.  
  16. dnl Checks for header files.
  17. AC_CONFIG_HEADER(autoconf.h)
  18. AC_HEADER_DIRENT
  19. AC_HEADER_STDC
  20. AC_CHECK_HEADERS(fcntl.h limits.h unistd.h)
  21.  
  22. dnl Checks for typedefs, structures, and compiler characteristics.
  23. AC_C_INLINE
  24. AC_TYPE_UID_T
  25.  
  26. dnl Checks for library functions.
  27. AC_FUNC_ALLOCA
  28. AC_FUNC_CLOSEDIR_VOID
  29. AC_TYPE_SIGNAL
  30. AC_CHECK_FUNCS(getcwd mkdir strerror strstr uname raise atexit)
  31.  
  32. AC_OUTPUT(Makefile lib/Makefile commons/Makefile ffscan/Makefile fflow/Makefile ftags/Makefile)
  33.