[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Fri Oct 14 15:52:29 UTC 2016


The branch master has been updated
       via  83bd048e9dbe5f376b2feaa7f0a6db6d98ef3a47 (commit)
      from  e7b69227ca35b7fa7ab7bc53099998a354e690da (commit)


- Log -----------------------------------------------------------------
commit 83bd048e9dbe5f376b2feaa7f0a6db6d98ef3a47
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Oct 14 17:44:25 2016 +0200

    Fix C++ support: set $target{cxx} correctly
    
    Reviewed-by: Matt Caswell <matt at openssl.org>

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

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

diff --git a/Configure b/Configure
index f451f94..2da2a1a 100755
--- a/Configure
+++ b/Configure
@@ -962,6 +962,7 @@ $config{perl} =    ($^O ne "VMS" ? $^X : "perl");
 $config{hashbangperl} =
     $ENV{'HASHBANGPERL'}           || $ENV{'PERL'}     || "/usr/bin/env perl";
 $target{cc} =      $ENV{'CC'}      || $target{cc}      || "cc";
+$target{cxx} =     $ENV{'CXX'}     || $target{cxx}     || "c++";
 $target{ranlib} =  $ENV{'RANLIB'}  || $target{ranlib}  ||
                    (which("$config{cross_compile_prefix}ranlib") ?
                           "\$(CROSS_COMPILE)ranlib" : "true");


More information about the openssl-commits mailing list