summaryrefslogtreecommitdiff
path: root/ext/iconv
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-18 03:54:10 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-18 03:54:10 +0000
commit2059c382a6262c72f3761e6a5988f3b4e6146fda (patch)
tree998eeb0036e73c1bf8382dad93e688c97177eddb /ext/iconv
parent22270b6d4b233c5426e7e40870106f82ead8636a (diff)
* ext/iconv/extconf.rb: workaround for GNU libiconv.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/iconv')
-rw-r--r--ext/iconv/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/iconv/extconf.rb b/ext/iconv/extconf.rb
index 9bc307acc8..55d9c5da5f 100644
--- a/ext/iconv/extconf.rb
+++ b/ext/iconv/extconf.rb
@@ -3,6 +3,6 @@ require 'mkmf'
dir_config("iconv")
if have_header("iconv.h")
- have_library("iconv", "iconv")
+ have_library("iconv")
create_makefile("iconv")
end