Commit 732192a0 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix no-deprecated on Windows

parent 1211e29c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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],
+1 −0
Original line number Diff line number Diff line
@@ -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; }
	}