diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-08 13:35:24 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-08 13:35:24 +0000 |
commit | ed540e8bdfca1e93e1285add58b1206408e19441 (patch) | |
tree | b11fa171dcdb98b8699d2401b4c545b9d1be714b /enc/Makefile.in | |
parent | 1889c00e0710c43a64c1706ecabdc26d91890daa (diff) | |
download | ruby-ed540e8bdfca1e93e1285add58b1206408e19441.tar.gz |
* encoding.c, Makefile.in, include/ruby/oniguruma.h,
enc/Makefile.in: fix rules for UTF-{16,32}{BE,LE}.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/Makefile.in')
-rw-r--r-- | enc/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/enc/Makefile.in b/enc/Makefile.in index 082be84c86..234a7e89c5 100644 --- a/enc/Makefile.in +++ b/enc/Makefile.in @@ -16,7 +16,8 @@ OBJEXT = @OBJEXT@ BUILTIN_ENCS = ascii.c \ euc_jp.c sjis.c \ - unicode.c utf8.c + unicode.c utf8.c \ + utf_16be.c utf_16le.c utf_32be.c utf_32le.c RUBY_SO_NAME = @RUBY_SO_NAME@ LIBRUBY = @LIBRUBY@ |