ossp-pkg/shiela/configure.in
AC_INIT(README)
AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)
V=`./shtool version -ltxt -dlong VERSION`
./shtool echo -e "Configuring %BOSSP Shiela%b, Version %B${V}%b"
echo "Copyright (c) 2000-2002 Ralf S. Engelschall <rse@engelschall.com>"
echo ""
AC_DIVERT_POP()
AC_MSG_CHECKING(for Perl program)
AC_ARG_WITH(perl,dnl
[ --with-perl=PATH force the use of a particular Perl program],
with_perl="$withval",
if test ".$with_perl" = .; then
with_perl=`./shtool path -m perl5 perl`
fi
)dnl
PATH_PERL="$with_perl"
AC_SUBST(PATH_PERL)
AC_MSG_RESULT($PATH_PERL)
AC_MSG_CHECKING(for CVS program)
AC_ARG_WITH(cvs,dnl
[ --with-cvs=PATH force the use of a particular CVS program],
with_cvs="$withval",
if test ".$with_cvs" = .; then
with_perl=`./shtool path cvs`
fi
)dnl
PATH_CVS="$with_cvs"
AC_SUBST(PATH_CVS)
AC_MSG_RESULT($PATH_CVS)
AC_SET_MAKE
AC_OUTPUT(Makefile)