home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / textutils-1.19-src.tgz / tar.out / fsf / textutils / configure.in < prev    next >
Text File  |  1996-09-28  |  2KB  |  78 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. AC_PREREQ(2.10)dnl               dnl Minimum Autoconf version required.
  5. AC_ARG_PROGRAM
  6.  
  7. PACKAGE=textutils
  8. VERSION=1.19
  9. PACKAGE_VERSION="GNU $PACKAGE-$VERSION"
  10. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
  11. AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
  12. AC_DEFINE_UNQUOTED(PACKAGE_VERSION, "$PACKAGE_VERSION")
  13. AC_SUBST(PACKAGE)
  14. AC_SUBST(VERSION)
  15. AC_SUBST(PACKAGE_VERSION)
  16.  
  17. jm_MAINTAINER_MODE
  18.  
  19. ALL_LINGUAS="de fr ko nl"
  20.  
  21. changequote(,)dnl
  22. case $VERSION in
  23.   *[a-z]) README_ALPHA=README-alpha;;
  24.   *) README_ALPHA=;;
  25. esac
  26. changequote([, ])dnl
  27. AC_SUBST(README_ALPHA)
  28.  
  29. dnl Checks for programs.
  30. AC_PROG_CC
  31. AC_PROG_INSTALL
  32. AC_PROG_MAKE_SET
  33. AC_PROG_CPP
  34. AC_PROG_GCC_TRADITIONAL
  35. AC_PROG_RANLIB
  36. AC_AIX
  37. AC_MINIX
  38. AC_ISC_POSIX
  39.  
  40. ud_WITH_REGEX
  41.  
  42. dnl Checks for header files.
  43. AC_CHECK_HEADERS(limits.h string.h memory.h fcntl.h float.h unistd.h values.h)
  44. AC_HEADER_STAT
  45. AC_HEADER_STDC
  46.  
  47. dnl This test must precede tests of compiler characteristics like
  48. dnl that for the inline keyword, since it may change the degree to
  49. dnl which the compiler supports such features.
  50. fp_C_PROTOTYPES
  51.  
  52. dnl Checks for typedefs, structures, and compiler characteristics.
  53. AC_C_BIGENDIAN
  54. AC_C_CONST
  55. AC_C_INLINE
  56. AC_C_LONG_DOUBLE
  57.  
  58. AC_HEADER_DIRENT
  59. AC_STRUCT_ST_BLKSIZE
  60. AC_TYPE_OFF_T
  61. AC_TYPE_SIGNAL
  62. AC_TYPE_SIZE_T
  63.  
  64. dnl Checks for library functions.
  65. AC_CHECK_FUNCS(getdelim strerror isascii strchr strrchr)
  66. AC_FUNC_ALLOCA
  67. AC_FUNC_MEMCMP
  68. AC_FUNC_VPRINTF
  69. AM_FUNC_STRTOD
  70. AC_REPLACE_FUNCS(memcpy memmove memset stpcpy strtoul)
  71. AC_REPLACE_GNU_GETOPT
  72.  
  73. ud_GNU_GETTEXT
  74. AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)
  75.  
  76. AC_OUTPUT([Makefile doc/Makefile intl/Makefile lib/Makefile \
  77. man/Makefile po/Makefile.in src/Makefile], [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile; test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h])
  78.