]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Add -Wundef to --strict-warnings options. Fix some warnings.
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Wed, 22 Feb 2017 20:40:41 +0000 (21:40 +0100)
committerAndy Polyakov <appro@openssl.org>
Thu, 23 Feb 2017 15:07:21 +0000 (16:07 +0100)
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2714)

Configure
test/testutil.h

index da0230a329ba3378bfbb074a2953fab86121175c..fd7988e2b3d93aad622f530327944fecca98ae88 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -109,7 +109,7 @@ my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimenta
 # Minimum warning options... any contributions to OpenSSL should at least get
 # past these. 
 
-my $gcc_devteam_warn = "-Wall -pedantic -DPEDANTIC -Wno-long-long -Wsign-compare -Wmissing-prototypes -Wshadow -Wformat -Werror -DCRYPTO_MDEBUG_ALL -DCRYPTO_MDEBUG_ABORT -DREF_CHECK -DOPENSSL_NO_DEPRECATED";
+my $gcc_devteam_warn = "-Wall -pedantic -DPEDANTIC -Wno-long-long -Wsign-compare -Wmissing-prototypes -Wshadow -Wformat -Wundef -Werror -DCRYPTO_MDEBUG_ALL -DCRYPTO_MDEBUG_ABORT -DREF_CHECK -DOPENSSL_NO_DEPRECATED";
 
 # TODO(openssl-team): fix problems and investigate if (at least) the following
 # warnings can also be enabled:
index 75f0c8ae01ee14e50ec2dd6b78783038b9ff650c..e40b37ed6e7a70722bcdfbd910ded022b5a77279 100644 (file)
  * TEST_CASE_NAME is defined as the name of the test case function where
  * possible; otherwise we get by with the file name and line number.
  */
-# if __STDC_VERSION__ < 199901L
+# if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
 #  if defined(_MSC_VER)
 #   define TEST_CASE_NAME __FUNCTION__
 #  else