[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Andy Polyakov appro at openssl.org
Tue Sep 13 12:03:47 UTC 2016


The branch OpenSSL_1_1_0-stable has been updated
       via  1556abd0438eeba0160fb5a1fe8c552ed8a63d7e (commit)
      from  ce7d2e152e721643bd93e331d627a4576521d058 (commit)


- Log -----------------------------------------------------------------
commit 1556abd0438eeba0160fb5a1fe8c552ed8a63d7e
Author: Andy Polyakov <appro at openssl.org>
Date:   Sat Sep 10 21:12:56 2016 +0200

    Configure: detect gcc's dependency generation capability more accurately.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (cherry picked from commit 35c11bfc69e6b90fd1c4c4ca6ad3f500584ca939)

-----------------------------------------------------------------------

Summary of changes:
 Configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configure b/Configure
index 4be1f33..9c183da 100755
--- a/Configure
+++ b/Configure
@@ -1181,7 +1181,7 @@ if ($^O ne "VMS" && !$disabled{makedepend}) {
         # We know that GNU C version 3 and up as well as all clang
         # versions support dependency generation
         $config{makedepprog} = $ccpcc
-            if (/clang/ || (/gcc/ && $compiler_major > 3));
+            if (/clang/ || (/gcc/ && $compiler_major >= 3));
         $ecc = "clang" if /clang/;
         $ecc = "gcc" if /gcc/;
         last if ($config{makedepprog} || !$lines--);


More information about the openssl-commits mailing list