From: foobar Date: Mon, 14 Mar 2005 21:11:33 +0000 (+0000) Subject: - Fixed bug #32200 (prevent using both --with-apxs2 and --with-apxs2filter) X-Git-Tag: php-5.0.1b1~796 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a879957d43ce5f84954ed5932ef51f73368b5d63;p=php - Fixed bug #32200 (prevent using both --with-apxs2 and --with-apxs2filter) --- diff --git a/configure.in b/configure.in index 755cfa6ecb..18d9f1a8eb 100644 --- a/configure.in +++ b/configure.in @@ -82,7 +82,11 @@ if test -n "$with_apache" && test -n "$with_apxs"; then AC_MSG_ERROR([--with-apache and --with-apxs cannot be used together]) fi +if test -n "$with_apxs2filter" && test -n "$with_apxs2"; then + AC_MSG_ERROR([--with-apxs2filter and --with-apxs2 cannot be used together]) +fi + dnl Settings we want to make before the checks. dnl -------------------------------------------------------------------------