Sha256: 18852a18e013dda2829632bfa747401c01f70721ac8776e27f6eab3d7925dad6
Contents?: true
Size: 458 Bytes
Versions: 9
Compression:
Stored size: 458 Bytes
Contents
# frozen_string_literal: false def digest_conf(name) unless with_config("bundled-#{name}") 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" $headers << "#{name}cc.h" return :commondigest end end end $objs << "#{name}.#{$OBJEXT}" return end
Version data entries
9 entries across 9 versions & 2 rubygems