# -*- shell-script -*- (Not really, but I like emacs' syntax highlighting) # configure.in for package cvsweb-converters # $CVSHeader: mkamm/scripts/cvsweb-converters/configure.in,v 1.13 2006/06/22 07:46:18 martin Exp $ AC_PREREQ(2.12) AC_REVISION($Id: configure.in,v 1.13 2006/06/22 07:46:18 martin Exp $)dnl AC_INIT(cvsweb-converters.conf.sample.in) AM_INIT_AUTOMAKE(cvsweb-converters, 0.3.3) AC_PROG_INSTALL # Let the user specify a Perl binary by means of --with-perl=/path/to/perl AC_ARG_WITH(perl, [ --with-perl=/path/to/your/perl Perl interpreter used by the scripts], PERL=$withval ac_cv_path_PERL=$withval) AC_PROG_PERL(5.004) # Required PERL libraries AC_PERLLIBS([Compress::Zlib Config::IniFiles Time::ParseDate URI::Escape]) # Maintainers need these: AC_PATH_PROG(GROFF, groff) AC_PATH_PROG(MD5, md5) AC_PATH_PROG(MD5SUM, md5sum) AC_PATH_PROG(POD2MAN, pod2man) AC_PATH_PROG(PERLDOC, perldoc) # Maintainers may like this tool: AC_PATH_PROG(PERLTIDY, perltidy) # Take care here not to set PREFIX=NONE if configure has been # called without a --prefix option. test "x$prefix" = xNONE && PREFIX="$ac_default_prefix" || PREFIX="$prefix" AC_SUBST(PREFIX) AC_OUTPUT(Makefile commitlog2cvsweb-check.pl commitlog2cvsweb.pl cvsrdiff2cvsweb.pl cvsuplog2cvsweb.pl cvsweb-converters.conf.sample) #EOF#