From b62a4a1c0e77233e201517e5e32d575a0f20cc05 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Thu, 27 Feb 2014 14:26:12 +0100 Subject: [PATCH 1/1] perlasm/x86asm.pl: recognize elf-1 denoting old ELF platforms. --- crypto/perlasm/x86asm.pl | 2 ++ 1 file changed, 2 insertions(+) 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")) -- 2.34.1