From 8f5b6b9b0fb84e05b00b23eee12b610fd2cc2ab9 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Fri, 20 Jun 2014 12:00:00 -0700 Subject: [PATCH] perlasm/x86asm.pl: recognize elf-1 denoting old ELF platforms. (Imported from upstream's ca88a1d439f72f124d0f23e2d130e56bbcbb93a9) --- crypto/perlasm/x86asm.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/perlasm/x86asm.pl b/crypto/perlasm/x86asm.pl index 7236bea2..1c884831 100644 --- a/crypto/perlasm/x86asm.pl +++ b/crypto/perlasm/x86asm.pl @@ -249,6 +249,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"))