summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/ext/digest/sha1/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/ext/digest/sha1/extconf.rb')
-rw-r--r--ruby_1_8_6/ext/digest/sha1/extconf.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/ruby_1_8_6/ext/digest/sha1/extconf.rb b/ruby_1_8_6/ext/digest/sha1/extconf.rb
deleted file mode 100644
index 87b74c34af..0000000000
--- a/ruby_1_8_6/ext/digest/sha1/extconf.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# $RoughId: extconf.rb,v 1.3 2001/08/14 19:54:51 knu Exp $
-# $Id$
-
-require "mkmf"
-
-$defs << "-DHAVE_CONFIG_H"
-$INCFLAGS << " -I$(srcdir)/.."
-
-$objs = [ "sha1init.#{$OBJEXT}" ]
-
-dir_config("openssl")
-
-if !with_config("bundled-sha1") &&
- have_library("crypto") && have_header("openssl/sha.h")
- $objs << "sha1ossl.#{$OBJEXT}"
-else
- $objs << "sha1.#{$OBJEXT}"
-end
-
-have_header("sys/cdefs.h")
-
-have_header("inttypes.h")
-
-have_header("unistd.h")
-
-$preload = %w[digest]
-
-create_makefile("digest/sha1")