From b632ca436c5d06defc87df8b2a4774680e9cf6ef Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 11 Feb 2015 02:08:50 +0000 Subject: digest: common configurations * ext/digest/digest_conf.rb (digest_conf): extract common configurations. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/sha2/extconf.rb | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'ext/digest/sha2/extconf.rb') diff --git a/ext/digest/sha2/extconf.rb b/ext/digest/sha2/extconf.rb index ac35132250..142a7f7077 100644 --- a/ext/digest/sha2/extconf.rb +++ b/ext/digest/sha2/extconf.rb @@ -3,24 +3,15 @@ # $Id$ require "mkmf" +require File.expand_path("../../digest_conf", __FILE__) $defs << "-DHAVE_CONFIG_H" $INCFLAGS << " -I$(srcdir)/.." $objs = [ "sha2init.#{$OBJEXT}" ] -if !with_config("bundled-sha2") && - (dir_config("openssl") - pkg_config("openssl") - require File.expand_path('../../../openssl/deprecation', __FILE__) - have_library("crypto")) && - %w[SHA256 SHA512].all? {|d| OpenSSL.check_func("#{d}_Transform", "openssl/sha.h")} && - %w[SHA256 SHA512].all? {|d| have_type("#{d}_CTX", "openssl/sha.h")} - $objs << "sha2ossl.#{$OBJEXT}" - $defs << "-DSHA2_USE_OPENSSL" -else +unless digest_conf("sha2", "sha", %w[SHA256 SHA512]) have_type("u_int8_t") - $objs << "sha2.#{$OBJEXT}" end have_header("sys/cdefs.h") -- cgit v1.2.3