Module: OpenSSL
- Defined in:
- ext/rubysl/openssl/deprecation.rb
Class Method Summary collapse
- .check_func(func, header) ⇒ Object
- .check_func_or_macro(func, header) ⇒ Object
- .deprecated_warning_flag ⇒ Object
Class Method Details
.check_func(func, header) ⇒ Object
18 19 20 |
# File 'ext/rubysl/openssl/deprecation.rb', line 18 def self.check_func(func, header) have_func(func, header, deprecated_warning_flag) end |
.check_func_or_macro(func, header) ⇒ Object
22 23 24 25 |
# File 'ext/rubysl/openssl/deprecation.rb', line 22 def self.check_func_or_macro(func, header) check_func(func, header) or have_macro(func, header) && $defs.push("-DHAVE_#{func.upcase}") end |
.deprecated_warning_flag ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'ext/rubysl/openssl/deprecation.rb', line 3 def self.deprecated_warning_flag unless flag = (@deprecated_warning_flag ||= nil) if try_compile("", flag = "-Werror=deprecated-declarations") if /darwin/ =~ RUBY_PLATFORM and with_config("broken-apple-openssl") flag = "-Wno-deprecated-declarations" end $warnflags << " #{flag}" else flag = "" end @deprecated_warning_flag = flag end flag end |