aboutsummaryrefslogtreecommitdiff
path: root/util/mk1mf.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-11-08 17:51:37 +0000
committerRichard Levitte <levitte@openssl.org>2000-11-08 17:51:37 +0000
commitccb9643f02cbc57f2e88927ca8eef0189d92fc5a (patch)
tree4a7571731b4ea09f1a39d6f3b25040bc8880b90a /util/mk1mf.pl
parent7f7b8d687173bd65ba2acea130ea25bd809e41b6 (diff)
downloadopenssl-ccb9643f02cbc57f2e88927ca8eef0189d92fc5a.zip
openssl-ccb9643f02cbc57f2e88927ca8eef0189d92fc5a.tar.gz
openssl-ccb9643f02cbc57f2e88927ca8eef0189d92fc5a.tar.bz2
Remove references to RSAref. The glue library is but a memory to fade
away now...
Diffstat (limited to 'util/mk1mf.pl')
-rwxr-xr-xutil/mk1mf.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 46755fa..2d92dc5 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -68,7 +68,6 @@ and [options] can be one of
debug - Debug build
profile - Profiling build
gcc - Use Gcc (unix)
- rsaref - Build to require RSAref
Values that can be set
TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler
@@ -218,7 +217,7 @@ $cflags.=" -DNO_SOCK" if $no_sock;
$cflags.=" -DNO_SSL2" if $no_ssl2;
$cflags.=" -DNO_SSL3" if $no_ssl3;
$cflags.=" -DNO_ERR" if $no_err;
-$cflags.=" -DRSAref" if $rsaref ne "";
+#$cflags.=" -DRSAref" if $rsaref ne "";
## if ($unix)
## { $cflags="$c_flags" if ($c_flags ne ""); }
@@ -885,7 +884,7 @@ sub read_options
$no_md2=$no_sha=$no_mdc2=$no_dsa=$no_dh=1;
$no_ssl2=$no_err=$no_rmd160=$no_rc5=1; }
- elsif (/^rsaref$/) { $rsaref=1; }
+ elsif (/^rsaref$/) { }
elsif (/^gcc$/) { $gcc=1; }
elsif (/^debug$/) { $debug=1; }
elsif (/^profile$/) { $profile=1; }