and later -> or higher

This commit is contained in:
Viktor Szakats 2026-04-22 21:18:24 +02:00
parent de6ab39f5d
commit 97e75f98b7
No known key found for this signature in database
7 changed files with 9 additions and 9 deletions

View file

@ -174,7 +174,7 @@ dnl -------------------------------------------------
dnl Verify if compiler being used is GNU C
dnl
dnl $compiler_num is set to MAJOR * 100 + MINOR for gcc less than version
dnl 7 and $MAJOR * 100 for gcc version 7 and later.
dnl 7 and $MAJOR * 100 for gcc version 7 or higher.
dnl
dnl Examples:
dnl Version 1.2.3 => 102
@ -548,7 +548,7 @@ AC_DEFUN([CURL_SET_COMPILER_BASIC_OPTS], [
GNU_C)
dnl turn implicit-function-declaration warning into error,
dnl at least gcc 2.95 and later support this
dnl at least gcc 2.95 or higher support this
if test "$compiler_num" -ge "295"; then
tmp_CFLAGS="$tmp_CFLAGS -Werror-implicit-function-declaration"
fi