[cairo-commit] gtkcairo ChangeLog,1.18,1.19 configure.in,1.7,1.8
OEyvind Kolaas
commit at pdx.freedesktop.org
Thu Nov 11 00:48:12 PST 2004
Committed by: pippin
Update of /cvs/cairo/gtkcairo
In directory gabe:/tmp/cvs-serv13711
Modified Files:
ChangeLog configure.in
Log Message:
disable default compiling of glitz support
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/gtkcairo/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ChangeLog 21 Sep 2004 16:53:43 -0000 1.18
+++ ChangeLog 11 Nov 2004 08:48:10 -0000 1.19
@@ -1,38 +1,44 @@
-2004-09-21 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-11-11 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+
+ * configure.in: default to not compiling with glitz support (since it
+ is bitrotted.)
+
+2004-09-21 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+
* configure.in, gtkcairo/gdkcairo.[ch]: Committed changes from
David Reveman <c99drn at cs.umu.se>, to bring the gl backend back
in sync with glitz API.
-2004-08-24 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-08-24 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* configure.in: incremented version to 0.3
-2004-08-09 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-08-09 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo/*.[ch], COPYING: Changed license to gtk+ to harmonize with gtk+
and cairo.
* AUTHORS, ChangeLog: utf8'ified my name
-2004-06-29 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-06-29 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo/g[td]kcairo.[ch]: Renamed redraw signal to paint
-2004-06-26 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-06-26 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo/gtkcairo.c: Added a save/restore pair around the expose
-2004-06-20 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-06-20 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo/gtkcairo.c: Added a non public function to query whether
the glitz backend is used. Need to figure out
a better API for this.
-2004-05-24 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-05-24 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* configure.in: made glitz-glx usage autodetected
* gtkcairo/gdkcairo.[ch]: USE_GL define instead of CAIRO_HAS_...
-2004-05-20 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+2004-05-20 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gdkcairo/gdkcairo.[ch]: started working on smarter virtualization of
backend, by moving all cairo touching parts out into a single file.
@@ -65,24 +71,24 @@
* doc/guadec_abstract_draft.txt: The original abstrast
-Mon, 23 Feb 2004 00:45:03 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+Mon, 23 Feb 2004 00:45:03 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo.c: Fix double free during destruction of GtkCairo instance
-Sat, 21 Feb 2004 00:07:00 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+Sat, 21 Feb 2004 00:07:00 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo.c, gtkcairo.h: Cosmetic cleanup
-Sun, 15 Feb 2004 18:35:00 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+Sun, 15 Feb 2004 18:35:00 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
* gtkcairo.c: intitial preparations for gl backend
-Sat, 14 Feb 2004 18:00:00 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+Sat, 14 Feb 2004 18:00:00 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
Changes needed to be able to derive new widgets from gtkcairo
* gtkcairo.c, gtkcairo.h: Move instance and class struct to header file.
-Thu, 12 Feb 2004 18:51:57 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
+Thu, 12 Feb 2004 18:51:57 +0100 Ãyvind KolÃ¥s <oeyvindk at hig.no>
Removed cairo-xlib.h include, added gtk_style_attach (),
widget now defaults to the current themes, default background
Index: configure.in
===================================================================
RCS file: /cvs/cairo/gtkcairo/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- configure.in 21 Sep 2004 16:53:43 -0000 1.7
+++ configure.in 11 Nov 2004 08:48:10 -0000 1.8
@@ -46,14 +46,14 @@
dnl ===========================================================================
AC_ARG_ENABLE(gl,
- [ --disable-gl Disable OpenGL support (glitz)],
- [use_gl=$enableval], [use_gl=yes])
+ [ --enable-gl Enable OpenGL support (glitz)],
+ [use_gl=$enableval], [use_gl=no])
if test "x$use_gl" = "xyes"; then
PKG_CHECK_MODULES(GL, glitz-glx >= 0.2.2, [
GTKCAIRO_CFLAGS="$GTKCAIRO_CFLAGS $GL_CFLAGS -DUSE_GL"
GTKCAIRO_LIBS="$GTKCAIRO_LIBS $GL_LIBS"
- use_gl=yes], [use_gl="no (requries glitz-glx)"])
+ use_gl=yes], [use_gl="no (bitrotted at the moment)"])
fi
dnl ===========================================================================
More information about the cairo-commit
mailing list