diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-21 07:01:43 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-21 07:01:43 +0000 |
| commit | 3fe20d8adf76e93738301856981687ca5cb81ba8 (patch) | |
| tree | e214e6793ba0037e86e1c2f76ee9eeb766523dcd | |
| parent | 053f259c993b0551452e42e86af68a4b292331ed (diff) | |
| download | ruby-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
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | ext/digest/rmd160/extconf.rb | 1 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Wed Jan 21 16:01:37 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/digest/rmd160/extconf.rb: have_library appends found library. + Tue Jan 20 14:48:13 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 02:49:22 2004 GOTOU Yuuzou <gotoyuzo@notwork.org> 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 |
