Sha256: dae61833a4bba3e06661f8832ae496de210c9c349e0fc39e75d7639bb1edcc09

Contents?: true

Size: 695 Bytes

Versions: 7

Compression:

Stored size: 695 Bytes

Contents

# frozen_string_literal: false
module OpenSSL
  def self.deprecated_warning_flag
    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
    flag
  end

  def self.check_func(func, header)
    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}")
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
openssl-2.0.3 ext/openssl/deprecation.rb
ruby-compiler-0.1.1 vendor/ruby/ext/openssl/deprecation.rb
openssl-2.0.2 ext/openssl/deprecation.rb
openssl-2.0.1 ext/openssl/deprecation.rb
openssl-2.0.0 ext/openssl/deprecation.rb
openssl-2.0.0.beta.2 ext/openssl/deprecation.rb
openssl-2.0.0.beta.1 ext/openssl/deprecation.rb