dnl dnl Configuration input file for standard Harvest broker components dnl dnl $Id: configure.in,v 2.2 1997/11/04 18:14:29 sxw Exp $ dnl AC_PREREQ(2.12) AC_INIT(simple-scripts/harvest-check.pl.in) AC_REVISION(1.2)dnl AC_PREFIX_DEFAULT(/usr/local/harvest) dnl Build a copy of prefix if test "X$prefix" != "NONE"; then myprefix="$prefix"; else myprefix='/usr/local/harvest'; fi INSTALL_TOPDIR="$myprefix"; INSTALL_LIBDIR="$myprefix/lib"; INSTALL_BINDIR="$myprefix/bin"; INSTALL_MANDIR="$myprefix/man"; THIS_HOST="`hostname`" XTRA_LIBS='' dnl Subsitutions AC_SUBST(INSTALL_TOPDIR) AC_SUBST(INSTALL_LIBDIR) AC_SUBST(INSTALL_BINDIR) AC_SUBST(INSTALL_MANDIR) AC_SUBST(THIS_HOST) dnl Check for programs AC_PROG_INSTALL dnl look for true/false scripts first AC_PATH_PROG(CMD_TRUE, true) AC_PATH_PROG(CMD_FALSE, false) dnl and use them AC_PATH_PROG(CMD_PERL, perl, $CMD_FALSE) dnl Set PERL too PERL="$CMD_PERL" AC_SUBST(PERL) dnl Clean up after OSF/1 core dump bug rm -f core AC_OUTPUT(\ Makefile \ simple-scripts/Makefile \ simple-scripts/harvest-check.pl \ )