From 25412316391bf3533e618622ed42f2d178bbcd71 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 28 Apr 2023 10:01:01 +0200 Subject: [PATCH] configure: fix detection of apxs (for httpd) The condition check was turned the wrong way around! Closes #11051 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3