diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-28 09:32:56 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-28 09:32:56 +0000 |
commit | e3349fb2b37e28b8960835624b3768abc3019e1c (patch) | |
tree | c809c5e7a78565792030646cc03ad6e181992080 | |
parent | 234cf271dfc2e88245ada27b41b9cae1e692f716 (diff) | |
download | ruby-e3349fb2b37e28b8960835624b3768abc3019e1c.tar.gz ruby-e3349fb2b37e28b8960835624b3768abc3019e1c.tar.xz ruby-e3349fb2b37e28b8960835624b3768abc3019e1c.zip |
* ext/openssl/extconf.rb: no need to check unistd.h and sys/time.h.
they are already checked at configure.
reported by KOBAYASHI Yasuhiro [ruby-list:43225]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ext/openssl/extconf.rb | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,9 @@ +Wed Feb 28 18:31:51 2007 NAKAMURA Usaku <usa@ruby-lang.org> + + * ext/openssl/extconf.rb: no need to check unistd.h and sys/time.h. + they are already checked at configure. + reported by KOBAYASHI Yasuhiro [ruby-list:43225] + Wed Feb 28 18:23:43 2007 NAKAMURA Usaku <usa@ruby-lang.org> * lib/mkmf.rb ($DEFLIBPATH): default library paths ($(topdir), etc) diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb index 11f74ff3d..98921bc46 100644 --- a/ext/openssl/extconf.rb +++ b/ext/openssl/extconf.rb @@ -36,8 +36,6 @@ end message "=== Checking for system dependent stuff... ===\n" have_library("nsl", "t_open") have_library("socket", "socket") -have_header("unistd.h") -have_header("sys/time.h") have_header("assert.h") message "=== Checking for required stuff... ===\n" |