From: Tilman Sauerbeck Date: Tue, 15 Aug 2006 18:23:48 +0000 (+0200) Subject: Added a configure check for rb_hash_foreach(). X-Git-Url: http://git.code-monkey.de/?p=ruby-vorbistagger.git;a=commitdiff_plain;h=361005fec584862f32299a61fc86b1253d724e28 Added a configure check for rb_hash_foreach(). --- diff --git a/Rakefile b/Rakefile index 4aa62fc..e83733c 100644 --- a/Rakefile +++ b/Rakefile @@ -35,6 +35,9 @@ task :extension => [:install, :clobber] config = Rake::ConfigureTask.new do |t| t.tests << Rake::ConfigureTask:: PkgConfigTest.new("vorbis", :is_critical => true) + t.tests << Rake::ConfigureTask:: + HaveFuncTest.new("rb_hash_foreach", "ruby.h", + :is_critical => true) t.tests << Rake::ConfigureTask::Gcc4Test.new("gcc4") end