From 38d5c974114f8b2c8a2a0f9923c81155d8cbd80f Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 25 Jun 2004 06:33:11 +0000 Subject: * ext/iconv/extconf.rb: check stricter. [ruby-talk:104501] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ ext/iconv/extconf.rb | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fdf23c92c..3355c397f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 25 15:33:01 2004 Nobuyoshi Nakada + + * ext/iconv/extconf.rb: check stricter. [ruby-talk:104501] + Fri Jun 25 01:58:01 2004 NAKAMURA Usaku * {bcc32,win32,wince}/setup.mak: remove RUBY_EXTERN lines when diff --git a/ext/iconv/extconf.rb b/ext/iconv/extconf.rb index 5e8018801..36f291c4a 100644 --- a/ext/iconv/extconf.rb +++ b/ext/iconv/extconf.rb @@ -5,8 +5,8 @@ dir_config("iconv") conf = File.exist?(File.join($srcdir, "config.charset")) conf = with_config("config-charset", enable_config("config-charset", conf)) -if have_header("iconv.h") - have_library("iconv", "iconv") {|s| s.sub(/(?=\n\/\*top\*\/)/, "#include ")} +if have_func("iconv", "iconv.h") or + have_library("iconv", "iconv") {|s| s.sub(/(?=\n\/\*top\*\/)/, "#include ")} if checking_for("const of iconv() 2nd argument") do create_tmpsrc(cpp_include("iconv.h") + "---> iconv(cd,0,0,0,0) <---") src = xpopen(cpp_command("")) {|f|f.read} -- cgit