From: Daniel Stenberg Date: Tue, 20 Sep 2022 08:56:44 +0000 (+0200) Subject: curl-compilers.m4: for gcc + want warnings, set gnu89 standard X-Git-Tag: curl-7_86_0~173 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b23ce2cee7329bbf425f18b49973b7a5f23dfcb4;p=thirdparty%2Fcurl.git curl-compilers.m4: for gcc + want warnings, set gnu89 standard To better verify that the code is C89 Closes #9542 --- diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4 index dba2c755f9..e39d978013 100644 --- a/m4/curl-compilers.m4 +++ b/m4/curl-compilers.m4 @@ -860,6 +860,7 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [ GNU_C) # if test "$want_warnings" = "yes"; then + tmp_CFLAGS="$tmp_CFLAGS -std=gnu89" # dnl Do not enable -pedantic when cross-compiling with a gcc older dnl than 3.0, to avoid warnings from third party system headers.