From: Daniel Stenberg Date: Fri, 28 Apr 2023 08:01:01 +0000 (+0200) Subject: configure: fix detection of apxs (for httpd) X-Git-Tag: curl-8_1_0~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25412316391bf3533e618622ed42f2d178bbcd71;p=thirdparty%2Fcurl.git configure: fix detection of apxs (for httpd) The condition check was turned the wrong way around! Closes #11051 --- diff --git a/configure.ac b/configure.ac index 1461e031a6..f832f710d2 100644 --- a/configure.ac +++ b/configure.ac @@ -333,7 +333,7 @@ if test x"$request_httpd" = "xcheck" -o x"$request_httpd" = "xyes"; then HTTPD="/usr/sbin/apache2" APACHECTL="/usr/sbin/apache2ctl" AC_PATH_PROG([APXS], [apxs]) - if test "x$APXS" != "x"; then + if test "x$APXS" = "x"; then AC_MSG_NOTICE([apache2-dev not installed, httpd tests disabled]) HTTPD_ENABLED="no" fi