diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-29 10:40:34 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-29 10:40:34 +0000 |
| commit | 44890ee876dcd3fcf239a95d54ba8d25053cbc8f (patch) | |
| tree | 60620ecc29c1511ed8f92e11dfaadb4ee7a3f850 | |
| parent | 625642c92721f814ef36fffa9bb977f7b7120a6a (diff) | |
| download | ruby-44890ee876dcd3fcf239a95d54ba8d25053cbc8f.tar.gz ruby-44890ee876dcd3fcf239a95d54ba8d25053cbc8f.tar.xz ruby-44890ee876dcd3fcf239a95d54ba8d25053cbc8f.zip | |
* configure.in, common.mk: fix rule for dmytranscode.o.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | common.mk | 2 | ||||
| -rw-r--r-- | configure.in | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Jan 29 19:39:40 2008 NARUSE, Yui <naruse@ruby-lang.org> + + * configure.in, common.mk: fix rule for dmytranscode.o. + Tue Jan 29 19:03:16 2008 NARUSE, Yui <naruse@ruby-lang.org> * enc/trans/japanese.c (rb_to_Windows_31J): to 'Windows-31J'. @@ -59,7 +59,6 @@ COMMONOBJS = array.$(OBJEXT) \ string.$(OBJEXT) \ struct.$(OBJEXT) \ time.$(OBJEXT) \ - transcode.$(OBJEXT) \ util.$(OBJEXT) \ variable.$(OBJEXT) \ version.$(OBJEXT) \ @@ -78,6 +77,7 @@ COMMONOBJS = array.$(OBJEXT) \ OBJS = dln.$(OBJEXT) \ encoding.$(OBJEXT) \ prelude.$(OBJEXT) \ + transcode.$(OBJEXT) \ $(COMMONOBJS) GOLFOBJS = goruby.$(OBJEXT) golf_prelude.$(OBJEXT) diff --git a/configure.in b/configure.in index c064b378c..52f948d3e 100644 --- a/configure.in +++ b/configure.in @@ -1603,7 +1603,7 @@ case "$target_os" in *) ;; esac -MINIOBJS="$MINIDLNOBJ dmyencoding.o" +MINIOBJS="$MINIDLNOBJ dmyencoding.o dmytranscode.o" case "$build_os" in *msdosdjgpp*) FIRSTMAKEFILE=GNUmakefile:djgpp/GNUmakefile.in;; |
