[cairo-commit] gtkcairo ChangeLog,1.20,1.21 configure.in,1.8,1.9

David Reveman commit at pdx.freedesktop.org
Fri Nov 12 03:47:48 PST 2004


Committed by: davidr

Update of /cvs/cairo/gtkcairo
In directory gabe:/tmp/cvs-serv23528

Modified Files:
	ChangeLog configure.in 
Log Message:
Better glitz backend support

Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/gtkcairo/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- ChangeLog	11 Nov 2004 09:07:58 -0000	1.20
+++ ChangeLog	12 Nov 2004 11:47:46 -0000	1.21
@@ -1,3 +1,16 @@
+2004-11-12  David Reveman  <c99drn at cs.umu.se>
+
+	* tests/Makefile.am (AM_CFLAGS): Added -I$(top_srcdir)/gtkcairo,
+	so that demo compiles without gtkcairo already installed.
+
+	* gtkcairo/gdkcairo.c: Better glitz backend support.
+	Environment variable GTKCAIRO_GL_DOUBLEBUFFER specifies if a
+	double buffered visual should be chosen and GTKCAIRO_GL_SAMPLES
+	specifies if a multi-sample visual should be chosen.
+
+	* configure.in: Require glitz-glx >= 0.3.0.
+	Made it default to compile with glitz support again.
+
 2004-11-11  Øyvind Kolås  <oeyvindk at hig.no>
 
 	* tests/demo.c: remove unused variable.

Index: configure.in
===================================================================
RCS file: /cvs/cairo/gtkcairo/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- configure.in	11 Nov 2004 08:48:10 -0000	1.8
+++ configure.in	12 Nov 2004 11:47:46 -0000	1.9
@@ -47,10 +47,10 @@
 
 AC_ARG_ENABLE(gl,
                [  --enable-gl            Enable OpenGL support (glitz)],
-               [use_gl=$enableval],  [use_gl=no])
+               [use_gl=$enableval],  [use_gl=yes])
 
 if test "x$use_gl" = "xyes"; then
-  PKG_CHECK_MODULES(GL, glitz-glx >= 0.2.2, [
+  PKG_CHECK_MODULES(GL, glitz-glx >= 0.3.0, [
   GTKCAIRO_CFLAGS="$GTKCAIRO_CFLAGS $GL_CFLAGS -DUSE_GL" 
   GTKCAIRO_LIBS="$GTKCAIRO_LIBS $GL_LIBS"
   use_gl=yes], [use_gl="no (bitrotted at the moment)"])




More information about the cairo-commit mailing list