configure: Fix --disable-pcre2
authorFabian Keil <fk@fabiankeil.de>
Sun, 27 Aug 2023 10:13:48 +0000 (12:13 +0200)
committerFabian Keil <fk@fabiankeil.de>
Sun, 27 Aug 2023 10:55:06 +0000 (12:55 +0200)
Previously it would result in neither pcre library being detected:

    checking for getnameinfo... (cached) yes
    configure: WARNING: Ignoring pcre2 even if it's available
    test: =: unexpected operator
    Enabling support for client-specific tags.
    checking for zlibVersion in -lz... (cached) yes
    Enabling compression support.
    test: =: unexpected operator
    test: =: unexpected operator
    configure: error: Detected neither pcre2 nor pcre library.

configure.in

index 0181d25..f8a23a5 100644 (file)
@@ -872,6 +872,7 @@ if test $enableval2 = yes; then
 else
   AC_MSG_WARN([Ignoring pcre2 even if it's available])
   try_pcre2=no
+  have_pcre2=no
 fi
 
 if test $try_pcre2 != no; then