From 2f2da243e915ab2f1a0825c8a6cd986b610ac730 Mon Sep 17 00:00:00 2001 From: mrkn Date: Thu, 17 Jun 2010 08:39:22 +0000 Subject: [PATCH] * ext/digest/sha2/extconf.rb: remove a check for uint64_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ ext/digest/sha2/extconf.rb | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index b4dcae0b03..8c18b84e47 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Jun 17 17:30:00 2010 Kenta Murata + + * ext/digest/sha2/extconf.rb: remove a check for uint64_t. + Wed Jun 16 18:35:20 2010 Akinori MUSHA * ext/digest: Work around a build problem with VC++ 2010, likely diff --git a/ext/digest/sha2/extconf.rb b/ext/digest/sha2/extconf.rb index 4bc89bd42c..503880f13c 100644 --- a/ext/digest/sha2/extconf.rb +++ b/ext/digest/sha2/extconf.rb @@ -24,6 +24,4 @@ have_header("sys/cdefs.h") $preload = %w[digest] -if have_type("uint64_t", "defs.h", $defs.join(' ')) - create_makefile("digest/sha2") -end +create_makefile("digest/sha2")