# HG changeset patch # User Stu Tomlinson # Date 1178338087 0 # Node ID bcba07153da51d581d5abab22d5744172d11bb04 # Parent aa87ecd650d2c12339fba8324820e74e9788e46c Prevent bogus configure errors if perl isn't found. This isn't major but it's seriously annoying right now. diff -r aa87ecd650d2 -r bcba07153da5 configure.ac --- a/configure.ac Sat May 05 01:58:20 2007 +0000 +++ b/configure.ac Sat May 05 04:08:07 2007 +0000 @@ -1187,7 +1187,7 @@ PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` if test "_$PERL_CFLAGS" = _ ; then AC_MSG_RESULT([not found, building without perl.]) - enable_perl = no + enable_perl=no else PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'`