diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-21 09:05:28 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-21 09:05:28 +0000 |
commit | a61f8d11291530f6896e6e9f1ec1e31277c19371 (patch) | |
tree | 1e63621872c988d62f469200ededca1d9b287e7b /ext/digest | |
parent | 2a346587505ad556748b9b35767d7fc02634fdad (diff) | |
download | ruby-a61f8d11291530f6896e6e9f1ec1e31277c19371.tar.gz ruby-a61f8d11291530f6896e6e9f1ec1e31277c19371.tar.xz ruby-a61f8d11291530f6896e6e9f1ec1e31277c19371.zip |
* ext/digest/md5/extconf.rb: have_library appends found library.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest')
-rw-r--r-- | ext/digest/md5/extconf.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/digest/md5/extconf.rb b/ext/digest/md5/extconf.rb index 0db0404db..9acf7ba9c 100644 --- a/ext/digest/md5/extconf.rb +++ b/ext/digest/md5/extconf.rb @@ -13,7 +13,6 @@ if !with_config("bundled-md5") && have_library("crypto") && have_header("openssl/md5.h") $objs << "md5ossl.#{$OBJEXT}" - $libs << " -lcrypto" else $objs << "md5.#{$OBJEXT}" end |