2001-12-24 09:57:46 -05:00
|
|
|
dnl Process this file with Autoconf to produce configure
|
|
|
|
|
|
|
|
AC_INIT(stow.in)
|
|
|
|
|
|
|
|
PACKAGE=stow
|
2002-01-08 17:04:14 -05:00
|
|
|
VERSION=1.3.3pre4
|
2001-12-30 12:08:45 -05:00
|
|
|
AM_INIT_AUTOMAKE(stow, $VERSION)
|
2001-12-24 09:57:46 -05:00
|
|
|
AC_SUBST(PACKAGE)
|
|
|
|
AC_SUBST(VERSION)
|
|
|
|
|
|
|
|
AC_ARG_PROGRAM
|
|
|
|
|
2001-12-30 12:08:45 -05:00
|
|
|
AC_PROG_INSTALL
|
2001-12-24 09:57:46 -05:00
|
|
|
|
2001-12-30 12:08:45 -05:00
|
|
|
AC_PATH_PROGS(PERL, perl perl5, false)
|
2001-12-24 09:57:46 -05:00
|
|
|
|
|
|
|
if test "x$PERL" = xfalse
|
|
|
|
then
|
|
|
|
echo 'WARNING: Perl not found; you must edit line 1 of `stow'"'"
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_OUTPUT(Makefile stow)
|