summaryrefslogtreecommitdiffstats
path: root/ext/digest
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-06 16:36:54 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-06 16:36:54 +0000
commitf9ec7a782d9af033ba821840855458268877c6e2 (patch)
tree0d7ed51048ab678728bf1570d73fa8b29295a2b6 /ext/digest
parent45567992ea54a78ee47b46eba39cf820ca156bf4 (diff)
downloadruby-f9ec7a782d9af033ba821840855458268877c6e2.tar.gz
ruby-f9ec7a782d9af033ba821840855458268877c6e2.tar.xz
ruby-f9ec7a782d9af033ba821840855458268877c6e2.zip
* ext/digest/*/extconf.rb: inttypes.h and unistd.h need not be
checked here. [ruby-dev:39032] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest')
-rw-r--r--ext/digest/md5/extconf.rb4
-rw-r--r--ext/digest/rmd160/extconf.rb4
-rw-r--r--ext/digest/sha1/extconf.rb4
-rw-r--r--ext/digest/sha2/extconf.rb4
4 files changed, 0 insertions, 16 deletions
diff --git a/ext/digest/md5/extconf.rb b/ext/digest/md5/extconf.rb
index 018f8ccb0..ddfdb707f 100644
--- a/ext/digest/md5/extconf.rb
+++ b/ext/digest/md5/extconf.rb
@@ -20,10 +20,6 @@ end
have_header("sys/cdefs.h")
-have_header("inttypes.h")
-
-have_header("unistd.h")
-
$preload = %w[digest]
create_makefile("digest/md5")
diff --git a/ext/digest/rmd160/extconf.rb b/ext/digest/rmd160/extconf.rb
index 09359944f..cc361e3d2 100644
--- a/ext/digest/rmd160/extconf.rb
+++ b/ext/digest/rmd160/extconf.rb
@@ -19,10 +19,6 @@ end
have_header("sys/cdefs.h")
-have_header("inttypes.h")
-
-have_header("unistd.h")
-
$preload = %w[digest]
create_makefile("digest/rmd160")
diff --git a/ext/digest/sha1/extconf.rb b/ext/digest/sha1/extconf.rb
index 87b74c34a..fa9945cd4 100644
--- a/ext/digest/sha1/extconf.rb
+++ b/ext/digest/sha1/extconf.rb
@@ -19,10 +19,6 @@ end
have_header("sys/cdefs.h")
-have_header("inttypes.h")
-
-have_header("unistd.h")
-
$preload = %w[digest]
create_makefile("digest/sha1")
diff --git a/ext/digest/sha2/extconf.rb b/ext/digest/sha2/extconf.rb
index c084a51a6..c15043f11 100644
--- a/ext/digest/sha2/extconf.rb
+++ b/ext/digest/sha2/extconf.rb
@@ -13,10 +13,6 @@ $objs = [
have_header("sys/cdefs.h")
-have_header("inttypes.h")
-
-have_header("unistd.h")
-
$preload = %w[digest]
if have_type("uint64_t", "defs.h", $defs.join(' '))