From 1254766dadf2ce92763e2ecbcb4cd2bbf2140bdd Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 14 Feb 2003 05:20:32 +0000 Subject: [PATCH] Change no_rmd160 to no_ripemd for consistency. PR: 500 --- util/mk1mf.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 4cc7881d8d..efdf77e74f 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -206,7 +206,7 @@ $cflags.=" -DNO_MD4" if $no_md4; $cflags.=" -DNO_MD5" if $no_md5; $cflags.=" -DNO_SHA" if $no_sha; $cflags.=" -DNO_SHA1" if $no_sha1; -$cflags.=" -DNO_RIPEMD" if $no_rmd160; +$cflags.=" -DNO_RIPEMD" if $no_ripemd; $cflags.=" -DNO_MDC2" if $no_mdc2; $cflags.=" -DNO_BF" if $no_bf; $cflags.=" -DNO_CAST" if $no_cast; @@ -674,7 +674,7 @@ sub var_add @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2; @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4; @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5; - @a=grep(!/(rmd)|(ripemd)/,@a) if $no_rmd160; + @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd; @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa; @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa; @@ -883,7 +883,7 @@ sub read_options elsif (/^just-ssl$/) { $no_rc2=$no_idea=$no_des=$no_bf=$no_cast=1; $no_md2=$no_sha=$no_mdc2=$no_dsa=$no_dh=1; - $no_ssl2=$no_err=$no_rmd160=$no_rc5=1; } + $no_ssl2=$no_err=$no_ripemd=$no_rc5=1; } elsif (/^rsaref$/) { $rsaref=1; } elsif (/^gcc$/) { $gcc=1; } -- 2.25.1