diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2002-05-19 14:03:05 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2002-05-19 14:03:05 +0200 |
commit | b89670ef0e007dbb1dc84388bf9f47372c9f1087 (patch) | |
tree | e205bf5367c98555460804c3d186b24b2c80cf7c /ms | |
parent | Add missing EVP_CIPHER_CTX_init call. (diff) | |
download | openssl-b89670ef0e007dbb1dc84388bf9f47372c9f1087.tar.xz openssl-b89670ef0e007dbb1dc84388bf9f47372c9f1087.zip |
Fix Mingw32 asm build: use the Unix
bignum assembly method of bn-586.pl
and co-586.pl which (for some reason)
VC++ doesn't use.
Diffstat (limited to 'ms')
-rw-r--r-- | ms/mingw32.bat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ms/mingw32.bat b/ms/mingw32.bat index db70b8580e..1968f4150b 100644 --- a/ms/mingw32.bat +++ b/ms/mingw32.bat @@ -12,7 +12,8 @@ echo Generating x86 for GNU assember echo Bignum
cd crypto\bn\asm
-perl x86.pl gaswin > bn-win32.s
+perl bn-586.pl gaswin > bn-win32.s
+perl co-586.pl gaswin > co-win32.s
cd ..\..\..
echo DES
|