summaryrefslogtreecommitdiffstats
path: root/ext/openssl
diff options
context:
space:
mode:
authormichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-23 18:48:07 +0000
committermichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-23 18:48:07 +0000
commit41aa68faa51bf9f2e967cba9aed727c38bf433c6 (patch)
treeac95c314cf6884891284e60ea7cd8f0ce889162b /ext/openssl
parenta4626d07785818d0c6f0ad422c355191f15c2c52 (diff)
downloadruby-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
Diffstat (limited to 'ext/openssl')
-rw-r--r--ext/openssl/extconf.rb14
1 files changed, 0 insertions, 14 deletions
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")