[openssl-commits] [openssl] OpenSSL_1_0_1-stable update
Andy Polyakov
appro at openssl.org
Wed Jan 7 17:43:24 UTC 2015
The branch OpenSSL_1_0_1-stable has been updated
via f16f3ac55973ac687e773a38dbae3f030e3e3fb2 (commit)
from 4fb433d221b18c50bc341b642c5b78757ed77a6b (commit)
- Log -----------------------------------------------------------------
commit f16f3ac55973ac687e773a38dbae3f030e3e3fb2
Author: Andy Polyakov <appro at openssl.org>
Date: Mon Jan 5 22:56:47 2015 +0100
Fix irix-cc build.
Reviewed-by: Matt Caswell <matt at openssl.org>
(cherry picked from commit e464403d0bda2f1f74eb68582e4988e591c32433)
-----------------------------------------------------------------------
Summary of changes:
crypto/aes/asm/aes-mips.pl | 2 +-
crypto/sha/asm/sha1-mips.pl | 2 +-
crypto/sha/asm/sha512-mips.pl | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/crypto/aes/asm/aes-mips.pl b/crypto/aes/asm/aes-mips.pl
index e523954..537c8d3 100644
--- a/crypto/aes/asm/aes-mips.pl
+++ b/crypto/aes/asm/aes-mips.pl
@@ -70,7 +70,7 @@ $pf = ($flavour =~ /nubi/i) ? $t0 : $t2;
#
######################################################################
-$big_endian=(`echo MIPSEL | $ENV{CC} -E -P -`=~/MIPSEL/)?1:0;
+$big_endian=(`echo MIPSEL | $ENV{CC} -E -`=~/MIPSEL/)?1:0 if ($ENV{CC});
for (@ARGV) { $output=$_ if (/^\w[\w\-]*\.\w+$/); }
open STDOUT,">$output";
diff --git a/crypto/sha/asm/sha1-mips.pl b/crypto/sha/asm/sha1-mips.pl
index f1a702f..197bc6b 100644
--- a/crypto/sha/asm/sha1-mips.pl
+++ b/crypto/sha/asm/sha1-mips.pl
@@ -64,7 +64,7 @@ if ($flavour =~ /64|n32/i) {
#
######################################################################
-$big_endian=(`echo MIPSEL | $ENV{CC} -E -P -`=~/MIPSEL/)?1:0;
+$big_endian=(`echo MIPSEL | $ENV{CC} -E -`=~/MIPSEL/)?1:0 if ($ENV{CC});
for (@ARGV) { $output=$_ if (/^\w[\w\-]*\.\w+$/); }
open STDOUT,">$output";
diff --git a/crypto/sha/asm/sha512-mips.pl b/crypto/sha/asm/sha512-mips.pl
index ffa053b..6807a2c 100644
--- a/crypto/sha/asm/sha512-mips.pl
+++ b/crypto/sha/asm/sha512-mips.pl
@@ -68,7 +68,7 @@ $pf = ($flavour =~ /nubi/i) ? $t0 : $t2;
#
######################################################################
-$big_endian=(`echo MIPSEL | $ENV{CC} -E -P -`=~/MIPSEL/)?1:0;
+$big_endian=(`echo MIPSEL | $ENV{CC} -E -`=~/MIPSEL/)?1:0 if ($ENV{CC});
for (@ARGV) { $output=$_ if (/^\w[\w\-]*\.\w+$/); }
open STDOUT,">$output";
More information about the openssl-commits
mailing list