home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ptx-0.4-src.tgz / ptx-0.4-src.tar / fsf / ptx / configure.in < prev    next >
Text File  |  1996-09-28  |  730b  |  41 lines

  1. # Configure template for GNU ptx.
  2. # Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc.
  3. # Process this file with autoconf to produce a configure script.
  4.  
  5. AC_INIT(ptx.c)
  6. AC_CONFIG_HEADER(config.h)
  7. AC_ARG_PROGRAM
  8.  
  9. PRODUCT=ptx
  10. VERSION=0.4
  11. AC_DEFINE_UNQUOTED(PRODUCT, "$PRODUCT")
  12. AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
  13. AC_SUBST(PRODUCT)
  14. AC_SUBST(VERSION)
  15.  
  16. AC_PROG_CC
  17. AC_PROG_INSTALL
  18. AC_PROG_RANLIB
  19.  
  20. AC_AIX
  21. AC_ISC_POSIX
  22. AC_MINIX
  23. AC_C_CROSS
  24. if test $cross_compiling = no; then
  25.   AC_C_CHAR_UNSIGNED
  26. fi
  27. fp_C_PROTOTYPES
  28. AC_C_CONST
  29.  
  30. AC_CHECK_HEADERS(string.h)
  31. AC_HEADER_STDC
  32.  
  33. AC_CHECK_FUNCS(setchrclass strerror)
  34. AC_FUNC_ALLOCA
  35. AC_FUNC_VPRINTF
  36.  
  37. fp_WITH_DMALLOC
  38.  
  39. AC_OUTPUT(Makefile,
  40. [test -z "$CONFIG_HEADERS" || date > stamp-h])
  41.