projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1211e29
)
Fix no-deprecated on Windows
author
Matt Caswell
<matt@openssl.org>
Sun, 11 Jan 2015 00:22:41 +0000
(
00:22
+0000)
committer
Matt Caswell
<matt@openssl.org>
Mon, 12 Jan 2015 12:06:39 +0000
(12:06 +0000)
Reviewed-by: Richard Levitte <levitte@openssl.org>
util/mk1mf.pl
patch
|
blob
|
history
util/mkdef.pl
patch
|
blob
|
history
diff --git
a/util/mk1mf.pl
b/util/mk1mf.pl
index e83ef7d37df0d24cfd8fbb4b5c13970d9b784f19..08e0d3c8569ca7a11d881ab8ef4dec651f94da19 100755
(executable)
--- a/
util/mk1mf.pl
+++ b/
util/mk1mf.pl
@@
-1465,6
+1465,7
@@
sub read_options
"no-zlib-dynamic" => 0,
"no-ssl-trace" => 0,
"no-unit-test" => 0,
+ "no-deprecated" => 0,
"fips" => \$fips,
"fipscanisterbuild" => [\$fips, \$fipscanisterbuild],
"fipscanisteronly" => [\$fips, \$fipscanisterbuild, \$fipscanisteronly],
diff --git
a/util/mkdef.pl
b/util/mkdef.pl
index ccd72f58872204bc61c20535e366347d76866d20..009d1322470b63da84ef5123cbc28687f6fef748 100755
(executable)
--- a/
util/mkdef.pl
+++ b/
util/mkdef.pl
@@
-246,6
+246,7
@@
foreach (@ARGV, split(/ /, $options))
elsif (/^no-sctp$/) { $no_sctp=1; }
elsif (/^no-srtp$/) { $no_srtp=1; }
elsif (/^no-unit-test$/){ $no_unit_test=1; }
+ elsif (/^no-deprecated$/) { $no_deprecated=1; }
}