diff options
author | markus <> | 2002-09-10 16:31:57 +0000 |
---|---|---|
committer | markus <> | 2002-09-10 16:31:57 +0000 |
commit | 7d038e9d4d83e7c7120e78418e108df70b9025d6 (patch) | |
tree | baf775b286ff801a89f746b1938a3c700bba6822 /src/lib/libcrypto/perlasm | |
parent | 3bd21dd4c3a3e3106321a5f6b3641ab9f18a6e3b (diff) | |
download | openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.gz openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.bz2 openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.zip |
merge openssl-0.9.7-beta3, tested on vax by miod@
Diffstat (limited to 'src/lib/libcrypto/perlasm')
-rw-r--r-- | src/lib/libcrypto/perlasm/x86asm.pl | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/perlasm/x86nasm.pl | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/perlasm/x86asm.pl b/src/lib/libcrypto/perlasm/x86asm.pl index 81c6e64e87..9a3d85b098 100644 --- a/src/lib/libcrypto/perlasm/x86asm.pl +++ b/src/lib/libcrypto/perlasm/x86asm.pl | |||
@@ -87,6 +87,12 @@ $tmp | |||
87 | #ifdef OUT | 87 | #ifdef OUT |
88 | #define OK 1 | 88 | #define OK 1 |
89 | #define ALIGN 4 | 89 | #define ALIGN 4 |
90 | #if defined(__CYGWIN__) || defined(__DJGPP__) | ||
91 | #undef SIZE | ||
92 | #undef TYPE | ||
93 | #define SIZE(a,b) | ||
94 | #define TYPE(a,b) | ||
95 | #endif /* __CYGWIN || __DJGPP */ | ||
90 | #endif | 96 | #endif |
91 | 97 | ||
92 | #if defined(BSDI) && !defined(ELF) | 98 | #if defined(BSDI) && !defined(ELF) |
diff --git a/src/lib/libcrypto/perlasm/x86nasm.pl b/src/lib/libcrypto/perlasm/x86nasm.pl index b4da364bbf..519d8a5867 100644 --- a/src/lib/libcrypto/perlasm/x86nasm.pl +++ b/src/lib/libcrypto/perlasm/x86nasm.pl | |||
@@ -209,7 +209,7 @@ sub using486 | |||
209 | 209 | ||
210 | sub main'file | 210 | sub main'file |
211 | { | 211 | { |
212 | push(@out, "segment .text\n"); | 212 | push(@out, "segment .text use32\n"); |
213 | } | 213 | } |
214 | 214 | ||
215 | sub main'function_begin | 215 | sub main'function_begin |