2012-04-30 17:03:38 -04:00
|
|
|
module OpenSSL
|
2012-05-01 01:18:02 -04:00
|
|
|
def self.deprecated_warning_flag
|
2012-04-30 17:03:38 -04:00
|
|
|
unless flag = (@deprecated_warning_flag ||= nil)
|
|
|
|
if try_compile("", flag = "-Werror=deprecated-declarations")
|
|
|
|
if with_config("broken-apple-openssl")
|
|
|
|
flag = "-Wno-deprecated-declarations"
|
|
|
|
end
|
|
|
|
$warnflags << " #{flag}"
|
|
|
|
else
|
|
|
|
flag = ""
|
|
|
|
end
|
|
|
|
@deprecated_warning_flag = flag
|
|
|
|
end
|
2012-05-01 01:18:02 -04:00
|
|
|
flag
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.check_func(func, header)
|
|
|
|
have_func(func, header, deprecated_warning_flag) and
|
|
|
|
have_header(header, nil, deprecated_warning_flag)
|
2012-04-30 17:03:38 -04:00
|
|
|
end
|
|
|
|
end
|