]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
build: drop exclamation marks, use "msh3/msquic" where incomplete
authorViktor Szakats <commit@vsz.me>
Sun, 22 Sep 2024 13:21:02 +0000 (15:21 +0200)
committerViktor Szakats <commit@vsz.me>
Sun, 22 Sep 2024 13:49:40 +0000 (15:49 +0200)
Closes #15002

CMakeLists.txt
configure.ac

index 338671cbe1c2f0197b147205a7cc01bba8f1f1e6..3853673508d6c991a042c29adaf45c7e353c58c3 100644 (file)
@@ -880,7 +880,7 @@ endif()
 option(USE_QUICHE "Use quiche library for HTTP/3 support" OFF)
 if(USE_QUICHE)
   if(USE_NGTCP2)
-    message(FATAL_ERROR "Only one HTTP/3 backend can be selected!")
+    message(FATAL_ERROR "Only one HTTP/3 backend can be selected")
   endif()
   find_package(Quiche REQUIRED)
   if(NOT HAVE_BORINGSSL)
@@ -899,10 +899,10 @@ if(USE_QUICHE)
   endif()
 endif()
 
-option(USE_MSH3 "Use msquic library for HTTP/3 support" OFF)
+option(USE_MSH3 "Use msh3/msquic library for HTTP/3 support" OFF)
 if(USE_MSH3)
   if(USE_NGTCP2 OR USE_QUICHE)
-    message(FATAL_ERROR "Only one HTTP/3 backend can be selected!")
+    message(FATAL_ERROR "Only one HTTP/3 backend can be selected")
   endif()
   find_package(MSH3 REQUIRED)
   include_directories(SYSTEM ${MSH3_INCLUDE_DIRS})
@@ -912,7 +912,7 @@ endif()
 
 if(USE_OPENSSL_QUIC)
   if(USE_NGTCP2 OR USE_QUICHE OR USE_MSH3)
-    message(FATAL_ERROR "Only one HTTP/3 backend can be selected!")
+    message(FATAL_ERROR "Only one HTTP/3 backend can be selected")
   endif()
   find_package(OpenSSL 3.3.0 REQUIRED)
 
index bf265b62a8ed16ec01e053bbdb26a8a2f4aa499a..eb7e9b353dc56fcc596ef712d631a80be5ecc140 100644 (file)
@@ -3573,7 +3573,7 @@ AC_INCLUDES_DEFAULT
 fi
 
 dnl **********************************************************************
-dnl Check for msh3 (QUIC)
+dnl Check for msh3/msquic (QUIC)
 dnl **********************************************************************
 
 OPT_MSH3="no"
@@ -3612,7 +3612,7 @@ if test X"$want_msh3" != Xno; then
       AC_MSG_ERROR([the detected TLS library does not support QUIC, making --with-msh3 a no-no])
     fi
     if test "$OPENSSL_ENABLED" != "1"; then
-      AC_MSG_ERROR([msh3 requires OpenSSL])
+      AC_MSG_ERROR([msh3/msquic requires OpenSSL])
     fi
   fi