[前][次][番号順一覧][スレッド一覧]

ruby-changes:6894

From: nobu <ko1@a...>
Date: Thu, 7 Aug 2008 17:48:14 +0900 (JST)
Subject: [ruby-changes:6894] Ruby:r18412 (trunk): * enc/depend: add transdb.c.

nobu	2008-08-07 17:47:58 +0900 (Thu, 07 Aug 2008)

  New Revision: 18412

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18412

  Log:
    * enc/depend: add transdb.c.

  Modified files:
    trunk/ChangeLog
    trunk/enc/Makefile.in
    trunk/enc/depend

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18411)
+++ ChangeLog	(revision 18412)
@@ -1,3 +1,7 @@
+Thu Aug  7 17:47:55 2008  Nobuyoshi Nakada  <nobu@r...>
+
+	* enc/depend: add transdb.c.
+
 Thu Aug  7 16:28:51 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* Makefile.in, common.mk, {bcc,win}32/Makefile.sub (clean-ext): do not
Index: enc/Makefile.in
===================================================================
--- enc/Makefile.in	(revision 18411)
+++ enc/Makefile.in	(revision 18412)
@@ -42,7 +42,6 @@
 dldflags = @DLDFLAGS@
 archflag = @ARCH_FLAG@
 DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
-BASERUBY = @BASERUBY@
 
 RM = @RM@
 
Index: enc/depend
===================================================================
--- enc/depend	(revision 18411)
+++ enc/depend	(revision 18412)
@@ -3,10 +3,11 @@
 % encs.each {|e| e.chomp!(".c")}
 % alphanumeric_order = proc {|e| e.scan(/(\d+)|(\D+)/).map {|n,a| a||[n.size,n.to_i]}.flatten}
 % encs = encs.sort_by(&alphanumeric_order)
+% encs.unshift(encs.delete("encdb"))
 % atrans = []
 % trans = Dir.open($srcdir+"/trans") {|d|
 %   d.select {|e|
-%     if e != 'transdb.c' && e.chomp!('.c')
+%     if e.chomp!('.c')
 %       atrans << e if e.chomp!(".erb")
 %       true
 %     end
@@ -15,6 +16,7 @@
 % trans.uniq!
 % atrans = atrans.sort_by(&alphanumeric_order)
 % trans = trans.sort_by(&alphanumeric_order)
+% trans.unshift(trans.delete("transdb"))
 % trans.map! {|e| "trans/#{e}"}
 % dependencies = encs + trans
 % cleanlibs = Shellwords.shellwords(CONFIG["cleanlibs"] || "")

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]