diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-10-30 14:47:34 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-10-30 14:47:34 +0000 |
| commit | 81d3b72efbf25d1e37fe13fbc58028d4d98cb6d9 (patch) | |
| tree | b64c8982e1d11ce74d18c50541f0c4f730a9ef34 | |
| parent | 3c1474df590eb4fbd4b8964cd390bcaeaea51f34 (diff) | |
| download | lasso-81d3b72efbf25d1e37fe13fbc58028d4d98cb6d9.tar.gz lasso-81d3b72efbf25d1e37fe13fbc58028d4d98cb6d9.tar.xz lasso-81d3b72efbf25d1e37fe13fbc58028d4d98cb6d9.zip | |
Make php4 and perl binding disabled by default
* configure.ac:
make default for --enable-perl and --enable-php4 to "no". Those
binding will not be maintained in the future.
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 3841c4c9..46e86cc4 100644 --- a/configure.ac +++ b/configure.ac @@ -401,7 +401,7 @@ AC_SUBST(PYTHON_VERSION) dnl Check if php is explicitly disabled. AC_ARG_ENABLE(php4, [ --disable-php4 disable the PHP 4 binding],, - enable_php4="yes") + enable_php4="no") AC_ARG_ENABLE(php4-force, [ --enable-php4-force always enable of the PHP 4 binding (win32)], [ENABLE_PHP4_FORCE="yes"], @@ -643,7 +643,7 @@ AM_CONDITIONAL([CSHARP_ENABLED], [test "x$enable_csharp" = "xyes"]) # ------------ AC_ARG_ENABLE(perl, [ --disable-perl disable the Perl binding],, - enable_perl="yes") + enable_perl="no") if test "X$PERL" != "X"; then PERLINSTALLSITEARCH=`$PERL -MConfig -e 'print $Config{installsitearch};'` |
