ruby-changes:3298
From: ko1@a...
Date: 30 Dec 2007 11:01:32 +0900
Subject: [ruby-changes:3298] naruse - Ruby:r14791 (trunk): * configure.in: rm largefile.h.
naruse 2007-12-30 11:00:59 +0900 (Sun, 30 Dec 2007)
New Revision: 14791
Modified files:
trunk/ChangeLog
trunk/common.mk
trunk/configure.in
trunk/enc/Makefile.in
trunk/enc/depend
Log:
* configure.in: rm largefile.h.
* common.mk: clean golf, conf*, preludes, and so on.
* enc/depend: silent and ignore error for rm.
* enc/Makefile.in: should define prefix and exec_prefix.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=14791&r2=14790
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/enc/Makefile.in?r1=14791&r2=14790
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/configure.in?r1=14791&r2=14790
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/enc/depend?r1=14791&r2=14790
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/common.mk?r1=14791&r2=14790
Index: configure.in
===================================================================
--- configure.in (revision 14790)
+++ configure.in (revision 14791)
@@ -1788,6 +1788,7 @@
tr -d '\015' < confdefs.h > "${config_h}"
fi
tr -d '\015' < largefile.h > confdefs.h
+rm largefile.h
BUILTIN_ENCS=["`sed -n -e '/^BUILTIN_ENCS[ ]*=/{' \
-e s/// -e :l -e '/\\\\$/N' -e 's/\\\\\\n/ /' -e 't l' -e p \
Index: ChangeLog
===================================================================
--- ChangeLog (revision 14790)
+++ ChangeLog (revision 14791)
@@ -1,3 +1,13 @@
+Sun Dec 30 10:54:49 2007 NARUSE, Yui <naruse@r...>
+
+ * configure.in: rm largefile.h.
+
+ * common.mk: clean golf, conf*, preludes, and so on.
+
+ * enc/depend: silent and ignore error for rm.
+
+ * enc/Makefile.in: should define prefix and exec_prefix.
+
Sun Dec 30 06:31:11 2007 NAKAMURA Usaku <usa@r...>
* encoding.c (Init_encoding): register Windows-31J and its alias.
Index: enc/Makefile.in
===================================================================
--- enc/Makefile.in (revision 14790)
+++ enc/Makefile.in (revision 14791)
@@ -1,5 +1,7 @@
encsrcdir = @srcdir@
topdir = .
+prefix = @prefix@
+exec_prefix = @exec_prefix@
libdir = @libdir@
top_srcdir = $(encsrcdir:/enc=)
srcdir = $(top_srcdir)
@@ -45,4 +47,4 @@
clean:
distclean: clean
- $(RM) enc.mk
+ @$(RM) enc.mk
Index: enc/depend
===================================================================
--- enc/depend (revision 14790)
+++ enc/depend (revision 14791)
@@ -55,9 +55,4 @@
% end
clean:
- $(RM) $(ENCSOS)
- $(RM) $(ENCDEFS)
- $(RM) $(ENCOBJS)
- $(RM) $(TRANSSOS)
- $(RM) $(TRANSDEFS)
- $(RM) $(TRANSOBJS)
+ @$(RM) $(ENCSOS) $(ENCDEFS) $(ENCOBJS) $(TRANSSOS) $(TRANSDEFS) $(TRANSOBJS)
Index: common.mk
===================================================================
--- common.mk (revision 14790)
+++ common.mk (revision 14791)
@@ -304,7 +304,7 @@
clean-local::
@$(RM) $(OBJS) $(MINIOBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE) .*.time
- @$(RM) *.inc
+ @$(RM) *.inc $(GOLFOBJS)
clean-ext:
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
clean-enc:
@@ -312,9 +312,10 @@
distclean: distclean-ext distclean-local distclean-enc
distclean-local:: clean-local
- @$(RM) $(MKFILES) config.h rbconfig.rb
- @$(RM) config.cache config.log config.status
+ @$(RM) $(MKFILES) config.h rbconfig.rb yasmdata.rb
+ @$(RM) config.cache config.log config.status config.status.lineno $(PRELUDES)
@$(RM) *~ *.bak *.stackdump core *.core gmon.out y.tab.c y.output $(PREP)
+ @-$(RM) ext/ripper/y.output
distclean-ext:
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
# -$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h
@@ -324,7 +325,7 @@
realclean:: realclean-ext realclean-local realclean-enc
realclean-local:: distclean-local
- @$(RM) parse.c lex.c
+ @$(RM) parse.c lex.c revision.h
realclean-ext::
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) realclean
realclean-enc:: distclean-enc
@@ -676,6 +677,7 @@
preludes: {$(VPATH)}miniprelude.c
preludes: {$(srcdir)}golf_prelude.c
+PRELUDES = prelude.c miniprelude.c golf_prelude.c
docs:
$(BASERUBY) -I$(srcdir) $(srcdir)/tool/makedocs.rb $(INSNS2VMOPT)
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml