home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / autoconf-2.1-src.lha / autoconf-2.1 / configure.in < prev    next >
Encoding:
Text File  |  1994-10-24  |  897 b   |  32 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(acgeneral.m4)
  3.  
  4. AC_ARG_PROGRAM
  5.  
  6. dnl We use a path for GNU m4 so even if users have another m4 first in
  7. dnl their path, the installer can configure with a path that has GNU m4
  8. dnl first and get that path embedded in the installed autoconf and
  9. dnl autoheader scripts.
  10. AC_PATH_PROGS(M4, gm4 gnum4 m4, m4)
  11.  
  12. dnl We use a path for perl so the #! line in autoscan will work.
  13. AC_PATH_PROG(PERL, perl, no)
  14. AC_SUBST(PERL)dnl
  15. AC_SUBST(SCRIPTS)dnl
  16. if test "$PERL" != no; then
  17.   SCRIPTS=autoscan
  18. else
  19.   AC_MSG_WARN(autoscan will not be built since perl is not found)
  20. fi
  21.  
  22. AC_PROG_INSTALL
  23.  
  24. # Work with the GNU or Cygnus source tree layout.
  25. if test -f $srcdir/standards.texi; then
  26.   standards_info=standards.info standards_dvi=standards.dvi
  27. fi
  28. AC_SUBST(standards_info)dnl
  29. AC_SUBST(standards_dvi)dnl
  30.  
  31. AC_OUTPUT(Makefile testsuite/Makefile)
  32.