ossp-pkg/shiela/configure.in 1.1 -> 1.2
--- configure.in 2000/06/18 14:30:49 1.1
+++ configure.in 2001/02/10 16:40:26 1.2
@@ -4,17 +4,31 @@
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 Ralf S. Engelschall <rse@engelschall.com>"
+echo "Copyright (c) 2000-2001 Ralf S. Engelschall <rse@engelschall.com>"
echo ""
AC_DIVERT_POP()
AC_MSG_CHECKING(for Perl program)
-PATH_PERL=`./shtool path -m perl5 perl`
+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)
-PATH_CVS=`./shtool path cvs`
+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)
|
|