2011-11-09 17:38:16 -05:00
|
|
|
dnl Process this file with Autoconf to produce configure
|
|
|
|
|
|
|
|
AC_INIT(stow.in)
|
|
|
|
|
|
|
|
PACKAGE=stow
|
2011-11-09 17:39:32 -05:00
|
|
|
VERSION=1.3.3
|
|
|
|
AM_INIT_AUTOMAKE(stow, $VERSION)
|
2011-11-09 17:38:16 -05:00
|
|
|
AC_SUBST(PACKAGE)
|
|
|
|
AC_SUBST(VERSION)
|
|
|
|
|
|
|
|
AC_ARG_PROGRAM
|
|
|
|
|
2011-11-09 17:39:32 -05:00
|
|
|
AC_PROG_INSTALL
|
2011-11-09 17:38:16 -05:00
|
|
|
|
2011-11-09 17:39:32 -05:00
|
|
|
AC_PATH_PROGS(PERL, perl perl5, false)
|
2011-11-09 17:38:16 -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)
|