1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/digest/rmd160/extconf.rb: have_library appends found library.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-01-21 07:01:43 +00:00
parent fb24225154
commit ce164c2a30
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Wed Jan 21 16:01:26 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/digest/rmd160/extconf.rb: have_library appends found library.
Tue Jan 20 14:48:28 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/extconf.rb: should check <openssl/conf_api.h> instead
@ -13,10 +17,10 @@ Tue Jan 20 14:25:51 2004 Dave Thomas <dave@pragprog.com>
Tue Jan 20 13:22:39 2004 Dave Thomas <dave@pragprog.com>
* lib/rdoc/generators/html_generator.rb: Document aliases at
* lib/rdoc/generators/html_generator.rb: Document aliases at
top-most level.
* lib/English.rb: Document English.rb.
* lib/English.rb: Document English.rb.
Tue Jan 20 04:41:58 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>

View file

@ -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