summaryrefslogtreecommitdiff
path: root/trunk/ext/digest/rmd160/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/digest/rmd160/extconf.rb')
-rw-r--r--trunk/ext/digest/rmd160/extconf.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/trunk/ext/digest/rmd160/extconf.rb b/trunk/ext/digest/rmd160/extconf.rb
deleted file mode 100644
index 09359944f2..0000000000
--- a/trunk/ext/digest/rmd160/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 << "-DNDEBUG" << "-DHAVE_CONFIG_H"
-$INCFLAGS << " -I$(srcdir)/.."
-
-$objs = [ "rmd160init.#{$OBJEXT}" ]
-
-dir_config("openssl")
-
-if !with_config("bundled-rmd160") &&
- have_library("crypto") && have_header("openssl/ripemd.h")
- $objs << "rmd160ossl.#{$OBJEXT}"
-else
- $objs << "rmd160.#{$OBJEXT}"
-end
-
-have_header("sys/cdefs.h")
-
-have_header("inttypes.h")
-
-have_header("unistd.h")
-
-$preload = %w[digest]
-
-create_makefile("digest/rmd160")