diff options
| author | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-06-17 08:39:22 +0000 |
|---|---|---|
| committer | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-06-17 08:39:22 +0000 |
| commit | 2f2da243e915ab2f1a0825c8a6cd986b610ac730 (patch) | |
| tree | 9a6cbdde5f29c73eafcde349449f0fa539bd5160 | |
| parent | 5a55408b77fb20b9e39428685dd20d215de37dcd (diff) | |
* 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
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/digest/sha2/extconf.rb | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Thu Jun 17 17:30:00 2010 Kenta Murata <mrkn@mrkn.jp> + + * ext/digest/sha2/extconf.rb: remove a check for uint64_t. + Wed Jun 16 18:35:20 2010 Akinori MUSHA <knu@iDaemons.org> * 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") |
