[cairo-commit] rcairo ChangeLog,1.179,1.180 extconf.rb,1.3,1.4

Kouhei Sutou commit at pdx.freedesktop.org
Thu Jun 14 05:03:13 PDT 2007


Committed by: kou

Update of /cvs/cairo/rcairo
In directory kemper:/tmp/cvs-serv3066

Modified Files:
	ChangeLog extconf.rb 
Log Message:
* extconf.rb: used String#each_line instead of String#each for
  supporting ruby 1.9.
  Thanks to Paul van Tilburg!!!


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/rcairo/ChangeLog,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -d -r1.179 -r1.180
--- ChangeLog	3 Jun 2007 04:16:39 -0000	1.179
+++ ChangeLog	14 Jun 2007 12:02:59 -0000	1.180
@@ -1,3 +1,8 @@
+2007-06-14  Paul van Tilburg  <paulvt at debian.org>
+
+	* extconf.rb: used String#each_line instead of String#each for
+	supporting ruby 1.9.
+
 2007-06-03  Kouhei Sutou  <kou at cozmixng.org>
 
 	* samples/agg/aa_test.rb: fixed wrong operation.

Index: extconf.rb
===================================================================
RCS file: /cvs/cairo/rcairo/extconf.rb,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- extconf.rb	13 Apr 2007 12:35:13 -0000	1.3
+++ extconf.rb	14 Jun 2007 12:02:59 -0000	1.4
@@ -80,7 +80,7 @@
 File.open("Makefile", "w") do |f|
   objs = []
   co = nil
-  makefile.each do |line|
+  makefile.each_line do |line|
     case line
     when /^TARGET\s*=\s*/
       f.print("TARGET = #{ext_dir_name}/#{$POSTMATCH}")



More information about the cairo-commit mailing list