diff options
author | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-23 18:48:07 +0000 |
---|---|---|
committer | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-23 18:48:07 +0000 |
commit | 41aa68faa51bf9f2e967cba9aed727c38bf433c6 (patch) | |
tree | ac95c314cf6884891284e60ea7cd8f0ce889162b | |
parent | a4626d07785818d0c6f0ad422c355191f15c2c52 (diff) | |
download | ruby-41aa68faa51bf9f2e967cba9aed727c38bf433c6.tar.gz ruby-41aa68faa51bf9f2e967cba9aed727c38bf433c6.tar.xz ruby-41aa68faa51bf9f2e967cba9aed727c38bf433c6.zip |
Cut check for OpenSSL version
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/openssl/extconf.rb | 14 |
2 files changed, 4 insertions, 14 deletions
@@ -1,3 +1,7 @@ +Thu Jul 24 03:44:04 2003 Michal Rokos <m.rokos@sh.cvut.cz> + + * ext/openssl/extconf.rb: cut check for OpenSSL version + Thu Jul 24 03:41:30 2003 NAKAMURA Usaku <usa@ruby-lang.org> * ext/tcltklib/tcltklib.c (ip_init): need at least one statement after diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb index 0b028b7b8..b4c12b9c5 100644 --- a/ext/openssl/extconf.rb +++ b/ext/openssl/extconf.rb @@ -31,8 +31,6 @@ if !defined? message end end -includes, = dir_config("openssl") -includes ||= "/usr/include" message "=== OpenSSL for Ruby configurator ===\n" @@ -73,17 +71,6 @@ EOD end -def have_openssl_097(inc_dir) -# FIXME: -# checking_for("OpenSSL >= 0.9.7") do - printf "checking for OpenSSL version... " - File.open(inc_dir+"/openssl/opensslv.h") {|f| - txt = f.read - puts (txt.grep(/#define SHLIB_VERSION_NUMBER/)[0].split '"')[1] - true - } -end - message "=== Checking for required stuff... ===\n" result = have_header("openssl/crypto.h") @@ -101,7 +88,6 @@ have_header("unistd.h") have_header("sys/time.h") message "=== Checking for OpenSSL features... ===\n" -have_openssl_097(includes) have_func("HMAC_CTX_copy") have_func("X509_STORE_get_ex_data") have_func("X509_STORE_set_ex_data") |