From a879957d43ce5f84954ed5932ef51f73368b5d63 Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 14 Mar 2005 21:11:33 +0000 Subject: [PATCH] - Fixed bug #32200 (prevent using both --with-apxs2 and --with-apxs2filter) --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.in b/configure.in index 755cfa6ecbb..18d9f1a8ebb 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 -------------------------------------------------------------------------