]> git.kaiwu.me - nginx.git/commitdiff
Configure: fixed QUIC support test.
authorRuslan Ermilov <ru@nginx.com>
Mon, 27 Sep 2021 07:10:38 +0000 (10:10 +0300)
committerRuslan Ermilov <ru@nginx.com>
Mon, 27 Sep 2021 07:10:38 +0000 (10:10 +0300)
OpenSSL library QUIC support cannot be tested at configure time when
using the --with-openssl option so assume it's present if requested.
While here, fixed the error message in case QUIC support is missing.

auto/lib/openssl/conf

index 8b84c02a46851aa956ab411514d27af33031b319..9ab0620911d935967d8b1ed451c1fae89a7f216c 100644 (file)
@@ -5,12 +5,16 @@
 
 if [ $OPENSSL != NONE ]; then
 
+    have=NGX_OPENSSL . auto/have
+    have=NGX_SSL . auto/have
+
+    if [ $USE_OPENSSL_QUIC = YES ]; then
+        have=NGX_QUIC . auto/have
+    fi
+
     case "$CC" in
 
         cl | bcc32)
-            have=NGX_OPENSSL . auto/have
-            have=NGX_SSL . auto/have
-
             CFLAGS="$CFLAGS -DNO_SYS_TYPES_H"
 
             CORE_INCS="$CORE_INCS $OPENSSL/openssl/include"
@@ -33,9 +37,6 @@ if [ $OPENSSL != NONE ]; then
         ;;
 
         *)
-            have=NGX_OPENSSL . auto/have
-            have=NGX_SSL . auto/have
-
             CORE_INCS="$CORE_INCS $OPENSSL/.openssl/include"
             CORE_DEPS="$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h"
             CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
@@ -139,30 +140,28 @@ END
         exit 1
     fi
 
-fi
-
+    if [ $USE_OPENSSL_QUIC = YES ]; then
 
-if [ $USE_OPENSSL_QUIC = YES ]; then
-
-    ngx_feature="OpenSSL QUIC support"
-    ngx_feature_name="NGX_QUIC"
-    ngx_feature_run=no
-    ngx_feature_incs="#include <openssl/ssl.h>"
-    ngx_feature_path=
-    ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL $NGX_LIBPTHREAD"
-    ngx_feature_test="SSL_set_quic_method(NULL, NULL)"
-    . auto/feature
+        ngx_feature="OpenSSL QUIC support"
+        ngx_feature_name="NGX_QUIC"
+        ngx_feature_run=no
+        ngx_feature_incs="#include <openssl/ssl.h>"
+        ngx_feature_path=
+        ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL $NGX_LIBPTHREAD"
+        ngx_feature_test="SSL_set_quic_method(NULL, NULL)"
+        . auto/feature
 
-    if [ $ngx_found = no ]; then
+        if [ $ngx_found = no ]; then
 
 cat << END
 
 $0: error: certain modules require OpenSSL QUIC support.
-You can either do not enable the modules, or install the OpenSSL library
-into the system, or build the OpenSSL library statically from the source
-with nginx by using --with-openssl=<path> option.
+You can either do not enable the modules, or install the OpenSSL library with
+QUIC support into the system, or build the OpenSSL library with QUIC support
+statically from the source with nginx by using --with-openssl=<path> option.
 
 END
-        exit 1
+            exit 1
+        fi
     fi
 fi