From e295d046dcdb83885d32eb08409e74849384ba60 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Tue, 29 Aug 2017 14:29:07 +0200 Subject: [PATCH 1/1] Revert "Allow --strict-warnings with the icc compiler as well" This reverts commit a610934c3bdf2c0aafc633d4245efe3df289d716. Reviewed-by: Richard Levitte Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/4281) --- Configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configure b/Configure index 57cdeb3dc4..bdca5efb69 100755 --- a/Configure +++ b/Configure @@ -1324,8 +1324,8 @@ if (defined($config{api})) { if ($strict_warnings) { my $wopt; - die "ERROR --strict-warnings requires gcc, clang or icc" - unless $ecc eq 'gcc' || $ecc eq 'clang' || $ecc eq 'icc'; + die "ERROR --strict-warnings requires gcc or clang" + unless $ecc eq 'gcc' || $ecc eq 'clang'; foreach $wopt (split /\s+/, $gcc_devteam_warn) { $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/) -- 2.34.1