2015-12-16 00:31:54 -05:00
|
|
|
# frozen_string_literal: false
|
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")
|
|
|
|
$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)
|
2016-05-25 04:50:03 -04:00
|
|
|
have_func(func, header, deprecated_warning_flag)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.check_func_or_macro(func, header)
|
|
|
|
check_func(func, header) or
|
|
|
|
have_macro(func, header) && $defs.push("-DHAVE_#{func.upcase}")
|
2012-04-30 17:03:38 -04:00
|
|
|
end
|
|
|
|
end
|