diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-18 03:54:10 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-18 03:54:10 +0000 |
| commit | a11a07801e3aae0c5ef1524e5f7c8f105fe1ab7c (patch) | |
| tree | 998eeb0036e73c1bf8382dad93e688c97177eddb | |
| parent | 27c6b1359784ff1ae4408d3bff4990789396a9eb (diff) | |
| download | ruby-a11a07801e3aae0c5ef1524e5f7c8f105fe1ab7c.tar.gz ruby-a11a07801e3aae0c5ef1524e5f7c8f105fe1ab7c.tar.xz ruby-a11a07801e3aae0c5ef1524e5f7c8f105fe1ab7c.zip | |
* ext/iconv/extconf.rb: workaround for GNU libiconv.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/iconv/extconf.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Mar 18 12:52:01 2002 WATANABE Hirofumi <eban@ruby-lang.org> + + * ext/iconv/extconf.rb: workaround for GNU libiconv. + Mon Mar 18 10:55:03 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp> * parse.y (parse_string): part of multi-byte sequence must not diff --git a/ext/iconv/extconf.rb b/ext/iconv/extconf.rb index 9bc307acc..55d9c5da5 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 |
