From 60be90d14e7bd29d4c9852ebc93509959f43808f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 12 Jul 2022 15:53:11 +0200 Subject: [PATCH] configure: fix --disable-headers-api MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reported-by: Michał Antoniak Fixes #9134 Closes #9143 --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9439fa049f..66076746ee 100644 --- a/configure.ac +++ b/configure.ac @@ -4057,13 +4057,13 @@ AC_ARG_ENABLE(headers-api, AS_HELP_STRING([--enable-headers-api],[Enable headers-api support]) AS_HELP_STRING([--disable-headers-api],[Disable headers-api support]), [ case "$enableval" in - *) - AC_MSG_RESULT(yes) - ;; no) AC_MSG_RESULT(no) curl_headers_msg="no (--enable-headers-api)" AC_DEFINE(CURL_DISABLE_HEADERS_API, 1, [disable headers-api]) ;; + *) + AC_MSG_RESULT(yes) + ;; esac ], AC_MSG_RESULT(yes) ) -- 2.47.3