mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/deprecation.rb (OpenSSL.check_func): check if header is
available for macro compatibility. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
633cebb0ef
commit
d32155358c
2 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue May 1 14:17:59 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/openssl/deprecation.rb (OpenSSL.check_func): check if header is
|
||||
available for macro compatibility.
|
||||
|
||||
Tue May 1 10:53:54 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* test/ruby/test_settracefunc.rb: ignore traces from another threads
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module OpenSSL
|
||||
def self.check_func(func, header)
|
||||
def self.deprecated_warning_flag
|
||||
unless flag = (@deprecated_warning_flag ||= nil)
|
||||
if try_compile("", flag = "-Werror=deprecated-declarations")
|
||||
if with_config("broken-apple-openssl")
|
||||
|
@ -11,6 +11,11 @@ module OpenSSL
|
|||
end
|
||||
@deprecated_warning_flag = flag
|
||||
end
|
||||
have_func(func, header, flag)
|
||||
flag
|
||||
end
|
||||
|
||||
def self.check_func(func, header)
|
||||
have_func(func, header, deprecated_warning_flag) and
|
||||
have_header(header, nil, deprecated_warning_flag)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue