Commit 45826265 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Auto detect no-ec2m add option to make no-ec2m tarball.

parent ccc5784e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1717,6 +1717,10 @@ while (<IN>)
		s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.\$(SHLIB_MAJOR).dylib .dylib/;
		}
	s/^SHARED_LDFLAGS=.*/SHARED_LDFLAGS=$shared_ldflag/;
	if ($fipscanisteronly == 2 && exists $disabled{"ec2m"})
		{
		next if (/ec2_/ || /bn_gf2m/);
		}
	print OUT $_."\n";
	}
close(IN);
+7 −0
Original line number Diff line number Diff line
@@ -21,6 +21,13 @@ foreach (split / /, $ENV{LINKDIRS} ) { $cdirs{$_} = 1 };

$cdirs{perlasm} = 1;

if (exists $ENV{NOEC2M})
	{
	delete $tarobjs{"bn_gf2m.c"};
	delete $tarobjs{"ec2_mult.c"};
	delete $tarobjs{"ec2_smpl.c"};
	}

my %keep = 
	(
	"Makefile.fips" => 1,