summaryrefslogtreecommitdiff
path: root/ext/digest/sha1/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/digest/sha1/extconf.rb')
-rw-r--r--ext/digest/sha1/extconf.rb16
1 files changed, 11 insertions, 5 deletions
diff --git a/ext/digest/sha1/extconf.rb b/ext/digest/sha1/extconf.rb
index 45e374e369..d5b7e06d9c 100644
--- a/ext/digest/sha1/extconf.rb
+++ b/ext/digest/sha1/extconf.rb
@@ -5,11 +5,17 @@ require "mkmf"
$CFLAGS << " -DHAVE_CONFIG_H -I#{File.dirname(__FILE__)}/.."
-$objs = [
- "sha1.#{$OBJEXT}",
- "sha1hl.#{$OBJEXT}",
- "sha1init.#{$OBJEXT}",
-]
+$objs = [ "sha1init.#{$OBJEXT}" ]
+
+dir_config("openssl")
+
+if !with_config("bundled-sha1") &&
+ have_library("crypto") && have_header("openssl/sha.h")
+ $objs << "sha1ossl.#{$OBJEXT}"
+ $libs << " -lcrypto"
+else
+ $objs << "sha1.#{$OBJEXT}" << "sha1hl.#{$OBJEXT}"
+end
have_header("sys/cdefs.h")