aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/perlasm/x86asm.pl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2014-02-27 14:26:12 +0100
committerAndy Polyakov <appro@openssl.org>2014-02-27 14:26:12 +0100
commitb62a4a1c0e77233e201517e5e32d575a0f20cc05 (patch)
treea3438665f462c0ce95f7d39a6cfff14d0773e743 /crypto/perlasm/x86asm.pl
parentce876d8316409542283b356d331f90e1a1dfb853 (diff)
downloadopenssl-b62a4a1c0e77233e201517e5e32d575a0f20cc05.tar.gz
perlasm/x86asm.pl: recognize elf-1 denoting old ELF platforms.
Diffstat (limited to 'crypto/perlasm/x86asm.pl')
-rw-r--r--crypto/perlasm/x86asm.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/perlasm/x86asm.pl b/crypto/perlasm/x86asm.pl
index dcbc738516..cae156ae63 100644
--- a/crypto/perlasm/x86asm.pl
+++ b/crypto/perlasm/x86asm.pl
@@ -255,6 +255,8 @@ sub ::asm_init
$elf=$cpp=$coff=$aout=$macosx=$win32=$netware=$mwerks=$android=0;
if (($type eq "elf"))
{ $elf=1; require "x86gas.pl"; }
+ elsif (($type eq "elf-1"))
+ { $elf=-1; require "x86gas.pl"; }
elsif (($type eq "a\.out"))
{ $aout=1; require "x86gas.pl"; }
elsif (($type eq "coff" or $type eq "gaswin"))