[cairo-commit] goocanvas ChangeLog, 1.78, 1.79 TODO, 1.24, 1.25 configure.in, 1.13, 1.14

Damon Chaplin commit at pdx.freedesktop.org
Mon Feb 19 03:16:20 PST 2007


Committed by: damon

Update of /cvs/cairo/goocanvas
In directory kemper:/tmp/cvs-serv15728

Modified Files:
	ChangeLog TODO configure.in 
Log Message:
2007-02-19  Damon Chaplin  <damon at gnome.org>

	* configure.in: 
	* src/Makefile.am: rewrote the stuff that handles the autogeneration
	of goocanvasmarshal.[hc] and goocanvasenumtypes.[hc], copying what
	GTK+ does. It now has a --disable-rebuilds option to disable the
	autogeneration and it doesn't try autogeneration if Perl isn't
	available.



Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/goocanvas/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- ChangeLog	17 Feb 2007 13:48:34 -0000	1.78
+++ ChangeLog	19 Feb 2007 11:16:14 -0000	1.79
@@ -1,3 +1,12 @@
+2007-02-19  Damon Chaplin  <damon at gnome.org>
+
+	* configure.in: 
+	* src/Makefile.am: rewrote the stuff that handles the autogeneration
+	of goocanvasmarshal.[hc] and goocanvasenumtypes.[hc], copying what
+	GTK+ does. It now has a --disable-rebuilds option to disable the
+	autogeneration and it doesn't try autogeneration if Perl isn't
+	available.
+
 2007-02-17  Damon Chaplin  <damon at gnome.org>
 
 	* Released GooCanvas 0.6

Index: TODO
===================================================================
RCS file: /cvs/cairo/goocanvas/TODO,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- TODO	17 Feb 2007 13:48:35 -0000	1.24
+++ TODO	19 Feb 2007 11:16:14 -0000	1.25
@@ -6,7 +6,6 @@
  o Should clip in goo_canvas_paint() if bounds passed in? (e.g. for printing)
  o Table should clip children, if it had to shrink.
 
-
 Features definitely needed:
 
  o Editable text item - a port of GtkTextView.

Index: configure.in
===================================================================
RCS file: /cvs/cairo/goocanvas/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- configure.in	17 Feb 2007 13:48:35 -0000	1.13
+++ configure.in	19 Feb 2007 11:16:14 -0000	1.14
@@ -14,8 +14,8 @@
 LT_REVISION=0
 LT_AGE=0
 
-VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
-AC_SUBST(VERSION_INFO)
+LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
+AC_SUBST(LT_VERSION_INFO)
 
 AM_MAINTAINER_MODE
 
@@ -43,6 +43,34 @@
 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
 AC_SUBST(GLIB_MKENUMS)
 
+AC_ARG_ENABLE(rebuilds,
+              [AC_HELP_STRING([--disable-rebuilds],
+                              [disable all source autogeneration rules])],,
+              [enable_rebuilds=yes])
+
+# define a MAINT-like variable REBUILD which is set if Perl
+# and awk are found, so autogenerated sources can be rebuilt
+AC_PATH_PROGS(PERL, perl5 perl)
+REBUILD=\#
+if test "x$enable_rebuilds" = "xyes" && \
+     test -n "$PERL" && \
+     $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 ; then
+  REBUILD=
+fi
+AC_SUBST(REBUILD)
+
+AC_MSG_CHECKING([for some Win32 platform])
+case "$host" in
+  *-*-mingw*|*-*-cygwin*)
+    platform_win32=yes
+    ;;
+  *)
+    platform_win32=no
+    ;;
+esac
+AC_MSG_RESULT([$platform_win32])
+AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
+
 GTK_DOC_CHECK(1.8)
 
 AC_OUTPUT([



More information about the cairo-commit mailing list