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

ruby-changes:41697

From: duerst <ko1@a...>
Date: Mon, 8 Feb 2016 09:44:05 +0900 (JST)
Subject: [ruby-changes:41697] duerst:r53771 (trunk): * common.mk: Removed enc/unicode/casefold.h from automatic build because

duerst	2016-02-08 09:44:10 +0900 (Mon, 08 Feb 2016)

  New Revision: 53771

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53771

  Log:
    * common.mk: Removed enc/unicode/casefold.h from automatic build because
      some CI systems don't have gperf. Creation of enc/unicode/casefold.h
      is now possible with make unicode-up. This is intended as a temporary measure.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53770)
+++ ChangeLog	(revision 53771)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Mon Feb  8 09:43:57 2016  Martin Duerst  <duerst@i...>
+
+	* common.mk: Removed enc/unicode/casefold.h from automatic build because
+	  some CI systems don't have gperf. Creation of enc/unicode/casefold.h
+	  is now possible with make unicode-up. This is intended as a temporary measure.
+
 Sun Feb  7 22:10:08 2016  Martin Duerst  <duerst@i...>
 
 	* common.mk: Added two more precondition files for enc/unicode/casefold.h
Index: common.mk
===================================================================
--- common.mk	(revision 53770)
+++ common.mk	(revision 53771)
@@ -1047,7 +1047,10 @@ $(srcdir)/.unicode-tables.time: $(srcdir https://github.com/ruby/ruby/blob/trunk/common.mk#L1047
 		$(srcdir)/template/unicode_norm_gen.tmpl \
 		$(UNICODE_DATA_DIR) lib/unicode_normalize
 
-$(srcdir)/enc/unicode/casefold.h: $(srcdir)/enc/unicode/case-folding.rb \
+# the next non-comment line was:
+# $(srcdir)/enc/unicode/casefold.h: $(srcdir)/enc/unicode/case-folding.rb \
+# but was changed to make sure CI works on systems that don't have gperf
+unicode-up: $(srcdir)/enc/unicode/case-folding.rb \
 		$(UNICODE_SRC_DATA_DIR)/UnicodeData.txt \
 		$(UNICODE_SRC_DATA_DIR)/SpecialCasing.txt \
 		$(UNICODE_SRC_DATA_DIR)/CaseFolding.txt

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

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