From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/ext/digest/sha1/extconf.rb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 jni/ruby/ext/digest/sha1/extconf.rb (limited to 'jni/ruby/ext/digest/sha1/extconf.rb') diff --git a/jni/ruby/ext/digest/sha1/extconf.rb b/jni/ruby/ext/digest/sha1/extconf.rb new file mode 100644 index 0000000..13c448b --- /dev/null +++ b/jni/ruby/ext/digest/sha1/extconf.rb @@ -0,0 +1,27 @@ +# -*- coding: us-ascii -*- +# $RoughId: extconf.rb,v 1.3 2001/08/14 19:54:51 knu Exp $ +# $Id: extconf.rb 47802 2014-10-05 02:03:55Z nobu $ + +require "mkmf" + +$defs << "-DHAVE_CONFIG_H" +$INCFLAGS << " -I$(srcdir)/.." + +$objs = [ "sha1init.#{$OBJEXT}" ] + +if !with_config("bundled-sha1") && + (dir_config("openssl") + pkg_config("openssl") + require File.expand_path('../../../openssl/deprecation', __FILE__) + have_library("crypto")) && + OpenSSL.check_func("SHA1_Transform", "openssl/sha.h") + $objs << "sha1ossl.#{$OBJEXT}" +else + $objs << "sha1.#{$OBJEXT}" +end + +have_header("sys/cdefs.h") + +$preload = %w[digest] + +create_makefile("digest/sha1") -- cgit v1.2.3