Commit 5db9e7be authored by Richard Levitte's avatar Richard Levitte
Browse files

Handle the "fips" option.

parent 104f570c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -236,6 +236,7 @@ $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
$cflags.=" -DOPENSSL_NO_EC"   if $no_ec;
$cflags.=" -DOPENSSL_NO_ENGINE"   if $no_engine;
$cflags.=" -DOPENSSL_NO_HW"   if $no_hw;
$cflags.=" -DFIPS"	      if $fips;
#$cflags.=" -DRSAref"  if $rsaref ne "";

## if ($unix)
@@ -919,6 +920,7 @@ sub read_options
				  $no_aes=1; }

	elsif (/^rsaref$/)	{ }
	elsif (/^fips$/)	{ $fips=1; }
	elsif (/^gcc$/)		{ $gcc=1; }
	elsif (/^debug$/)	{ $debug=1; }
	elsif (/^profile$/)	{ $profile=1; }