summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/util/mk1mf.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/util/mk1mf.pl')
-rw-r--r--src/lib/libcrypto/util/mk1mf.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/libcrypto/util/mk1mf.pl b/src/lib/libcrypto/util/mk1mf.pl
index 6fbf3ceca6..100d76f279 100644
--- a/src/lib/libcrypto/util/mk1mf.pl
+++ b/src/lib/libcrypto/util/mk1mf.pl
@@ -8,6 +8,7 @@
8$INSTALLTOP="/usr/local/ssl"; 8$INSTALLTOP="/usr/local/ssl";
9$OPTIONS=""; 9$OPTIONS="";
10$ssl_version=""; 10$ssl_version="";
11$banner="\t\@echo Building OpenSSL";
11 12
12open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n"; 13open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
13while(<IN>) { 14while(<IN>) {
@@ -59,6 +60,7 @@ and [options] can be one of
59 just-ssl - remove all non-ssl keys/digest 60 just-ssl - remove all non-ssl keys/digest
60 no-asm - No x86 asm 61 no-asm - No x86 asm
61 nasm - Use NASM for x86 asm 62 nasm - Use NASM for x86 asm
63 gaswin - Use GNU as with Mingw32
62 no-socks - No socket code 64 no-socks - No socket code
63 no-err - No error strings 65 no-err - No error strings
64 dll/shlib - Build shared libraries (MS) 66 dll/shlib - Build shared libraries (MS)
@@ -850,6 +852,7 @@ sub read_options
850 elsif (/^no-hmac$/) { $no_hmac=1; } 852 elsif (/^no-hmac$/) { $no_hmac=1; }
851 elsif (/^no-asm$/) { $no_asm=1; } 853 elsif (/^no-asm$/) { $no_asm=1; }
852 elsif (/^nasm$/) { $nasm=1; } 854 elsif (/^nasm$/) { $nasm=1; }
855 elsif (/^gaswin$/) { $gaswin=1; }
853 elsif (/^no-ssl2$/) { $no_ssl2=1; } 856 elsif (/^no-ssl2$/) { $no_ssl2=1; }
854 elsif (/^no-ssl3$/) { $no_ssl3=1; } 857 elsif (/^no-ssl3$/) { $no_ssl3=1; }
855 elsif (/^no-err$/) { $no_err=1; } 858 elsif (/^no-err$/) { $no_err=1; }