From 0e4d961a412b7b65d2824a22a04ccefe80a151d8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 26 May 2026 18:40:43 +0200 Subject: [PATCH] or higher -> or greater 4 m4 --- configure.ac | 4 ++-- m4/curl-confopts.m4 | 2 +- m4/curl-functions.m4 | 10 +++++----- m4/curl-gnutls.m4 | 2 +- m4/curl-openssl.m4 | 2 +- m4/curl-reentrant.m4 | 2 +- m4/xc-am-iface.m4 | 2 +- m4/zz40-xc-ovr.m4 | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/configure.ac b/configure.ac index f06100483f..b3f78c5136 100644 --- a/configure.ac +++ b/configure.ac @@ -649,7 +649,7 @@ CURL_SET_COMPILER_WARNING_OPTS if test "$compiler_id" = "INTEL_UNIX_C"; then if test "$compiler_num" -ge "1000"; then - dnl icc 10.x or higher + dnl icc 10.x or greater CFLAGS="$CFLAGS -shared-intel" elif test "$compiler_num" -ge "900"; then dnl icc 9.x specific @@ -670,7 +670,7 @@ CURL_CFLAG_EXTRAS="" if test "$want_werror" = "yes"; then CURL_CFLAG_EXTRAS="-Werror" if test "$compiler_id" = "GNU_C"; then - dnl enable -pedantic-errors for GCC 5 or higher, + dnl enable -pedantic-errors for GCC 5 or greater, dnl as before that it was the same as -Werror=pedantic if test "$compiler_num" -ge "500"; then CURL_CFLAG_EXTRAS="$CURL_CFLAG_EXTRAS -pedantic-errors" diff --git a/m4/curl-confopts.m4 b/m4/curl-confopts.m4 index 3fcb0f9fd0..576c967f8b 100644 --- a/m4/curl-confopts.m4 +++ b/m4/curl-confopts.m4 @@ -441,7 +441,7 @@ AC_DEFUN([CURL_CHECK_LIB_ARES], [ LDFLAGSPC="$clean_LDFLAGSPC $ares_LDFLAGS" LIBS="$ares_LIBS $clean_LIBS" - dnl check if c-ares new enough, 1.16.0 or higher + dnl check if c-ares new enough, 1.16.0 or greater AC_CHECK_FUNC([ares_getaddrinfo], [ ],[ diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index d6671fce94..df14c1345a 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -1330,7 +1330,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ if test "$curl_cv_func_getaddrinfo" = "yes"; then AC_MSG_CHECKING([if getaddrinfo is thread-safe]) if test "$curl_cv_apple" = "yes"; then - dnl Darwin 6.0 and macOS 10.2.x or higher + dnl Darwin 6.0 and macOS 10.2.x or greater tst_tsafe_getaddrinfo="yes" fi case $host_os in @@ -1339,7 +1339,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="no" ;; aix*) - dnl AIX 5.2 or higher + dnl AIX 5.2 or greater tst_tsafe_getaddrinfo="yes" ;; darwin[[12345]].*) @@ -1351,7 +1351,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="no" ;; freebsd*) - dnl FreeBSD 5.5 or higher + dnl FreeBSD 5.5 or greater tst_tsafe_getaddrinfo="yes" ;; hpux[[123456789]].* | hpux10.* | hpux11.0* | hpux11.10*) @@ -1359,7 +1359,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="no" ;; hpux*) - dnl HP-UX 11.11 or higher + dnl HP-UX 11.11 or greater tst_tsafe_getaddrinfo="yes" ;; midnightbsd*) @@ -1371,7 +1371,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="no" ;; netbsd*) - dnl NetBSD 4.x or higher + dnl NetBSD 4.x or greater tst_tsafe_getaddrinfo="yes" ;; *bsd*) diff --git a/m4/curl-gnutls.m4 b/m4/curl-gnutls.m4 index a67ca41382..a3638d0d29 100644 --- a/m4/curl-gnutls.m4 +++ b/m4/curl-gnutls.m4 @@ -203,7 +203,7 @@ if test "$GNUTLS_ENABLED" = "1"; then dnl --- dnl We require GnuTLS with SRP support. dnl - dnl In GnuTLS 3.8.0 (2023-02-10) or higher, this check always succeeds. + dnl In GnuTLS 3.8.0 (2023-02-10) or greater, this check always succeeds. dnl Detecting actual TLS-SRP support needs poking the API at runtime. dnl --- AC_CHECK_LIB(gnutls, gnutls_srp_verifier, diff --git a/m4/curl-openssl.m4 b/m4/curl-openssl.m4 index 08d62fe7f3..e20099c0ad 100644 --- a/m4/curl-openssl.m4 +++ b/m4/curl-openssl.m4 @@ -290,7 +290,7 @@ if test "x$OPT_OPENSSL" != "xno"; then #endif ]]) ],[],[ - AC_MSG_ERROR([OpenSSL 3.0.0 or higher required.]) + AC_MSG_ERROR([OpenSSL 3.0.0 or greater required.]) ]) fi fi diff --git a/m4/curl-reentrant.m4 b/m4/curl-reentrant.m4 index 60cd382758..9a267363b5 100644 --- a/m4/curl-reentrant.m4 +++ b/m4/curl-reentrant.m4 @@ -307,7 +307,7 @@ AC_DEFUN([CURL_CHECK_NEED_THREAD_SAFE_SYSTEM], [ tmp_need_thread_safe="no" ;; aix*) - dnl AIX 4.3 or higher + dnl AIX 4.3 or greater tmp_need_thread_safe="yes" ;; *) diff --git a/m4/xc-am-iface.m4 b/m4/xc-am-iface.m4 index 956a2d77fe..b4924485c4 100644 --- a/m4/xc-am-iface.m4 +++ b/m4/xc-am-iface.m4 @@ -64,7 +64,7 @@ dnl This macro embeds automake machinery into configure dnl script regardless of automake version used in order dnl to generate configure script. dnl -dnl When using automake version 1.14 or higher, automake +dnl When using automake version 1.14 or greater, automake dnl initialization option 'subdir-objects' is used to dnl generate the configure script, otherwise this option dnl is not used. diff --git a/m4/zz40-xc-ovr.m4 b/m4/zz40-xc-ovr.m4 index 270d085548..4a5131cf10 100644 --- a/m4/zz40-xc-ovr.m4 +++ b/m4/zz40-xc-ovr.m4 @@ -536,7 +536,7 @@ dnl allow expansion of XC_CONFIGURE_PREAMBLE macro dnl early enough in the generated configure script. dnl -dnl Override when using autoconf 2.53 or higher. +dnl Override when using autoconf 2.53 or greater. dnl m4_ifdef([_AS_PATH_SEPARATOR_PREPARE],