2015-12-16 00:31:54 -05:00
|
|
|
# frozen_string_literal: false
|
2015-11-26 03:31:12 -05:00
|
|
|
def digest_conf(name, hdr = name, funcs = nil, types = nil)
|
2015-02-10 21:08:50 -05:00
|
|
|
unless with_config("bundled-#{name}")
|
2015-02-10 21:09:55 -05:00
|
|
|
cc = with_config("common-digest")
|
|
|
|
if cc == true or /\b#{name}\b/ =~ cc
|
|
|
|
if File.exist?("#$srcdir/#{name}cc.h") and
|
|
|
|
have_header("CommonCrypto/CommonDigest.h")
|
|
|
|
$defs << "-D#{name.upcase}_USE_COMMONDIGEST"
|
|
|
|
return :commondigest
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-10 21:08:50 -05:00
|
|
|
dir_config("openssl")
|
|
|
|
pkg_config("openssl")
|
|
|
|
require File.expand_path('../../openssl/deprecation', __FILE__)
|
|
|
|
if have_library("crypto")
|
|
|
|
funcs ||= name.upcase
|
|
|
|
funcs = Array(funcs)
|
2015-11-26 03:31:12 -05:00
|
|
|
types ||= funcs
|
2015-02-10 21:08:50 -05:00
|
|
|
hdr = "openssl/#{hdr}.h"
|
|
|
|
if funcs.all? {|func| OpenSSL.check_func("#{func}_Transform", hdr)} &&
|
2015-11-26 03:31:12 -05:00
|
|
|
types.all? {|type| have_type("#{type}_CTX", hdr)}
|
2015-02-10 21:08:50 -05:00
|
|
|
$defs << "-D#{name.upcase}_USE_OPENSSL"
|
|
|
|
return :ossl
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
$objs << "#{name}.#{$OBJEXT}"
|
|
|
|
return
|
|
|
|
end
|