summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-21 07:01:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-21 07:01:43 +0000
commit3fe20d8adf76e93738301856981687ca5cb81ba8 (patch)
treee214e6793ba0037e86e1c2f76ee9eeb766523dcd /ext
parent053f259c993b0551452e42e86af68a4b292331ed (diff)
downloadruby-3fe20d8adf76e93738301856981687ca5cb81ba8.tar.gz
ruby-3fe20d8adf76e93738301856981687ca5cb81ba8.tar.xz
ruby-3fe20d8adf76e93738301856981687ca5cb81ba8.zip
* ext/digest/rmd160/extconf.rb: have_library appends found library.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/digest/rmd160/extconf.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/digest/rmd160/extconf.rb b/ext/digest/rmd160/extconf.rb
index 3f6a88e75..5bc968385 100644
--- a/ext/digest/rmd160/extconf.rb
+++ b/ext/digest/rmd160/extconf.rb
@@ -12,7 +12,6 @@ dir_config("openssl")
if !with_config("bundled-rmd160") &&
have_library("crypto") && have_header("openssl/ripemd.h")
$objs << "rmd160ossl.#{$OBJEXT}"
- $libs << " -lcrypto"
else
$objs << "rmd160.#{$OBJEXT}" << "rmd160hl.#{$OBJEXT}"
end