head 1.12; access; symbols; locks; strict; comment @# @; 1.12 date 2005.10.09.02.38.04; author cworth; state Exp; branches; next 1.11; commitid 7dbb4348828c4567; 1.11 date 2005.08.07.22.57.09; author pippin; state Exp; branches; next 1.10; commitid 734542f691c44567; 1.10 date 2005.01.25.20.53.11; author davidr; state Exp; branches; next 1.9; 1.9 date 2004.11.12.11.47.46; author davidr; state Exp; branches; next 1.8; 1.8 date 2004.11.11.08.48.10; author pippin; state Exp; branches; next 1.7; 1.7 date 2004.09.21.16.53.43; author pippin; state Exp; branches; next 1.6; 1.6 date 2004.08.24.09.09.29; author pippin; state Exp; branches; next 1.5; 1.5 date 2004.08.09.16.32.40; author pippin; state Exp; branches; next 1.4; 1.4 date 2004.05.23.22.30.21; author pippin; state Exp; branches; next 1.3; 1.3 date 2004.05.20.00.19.12; author davidr; state Exp; branches; next 1.2; 1.2 date 2003.11.25.04.34.20; author martine; state Exp; branches; next 1.1; 1.1 date 2003.11.18.15.17.07; author cworth; state Exp; branches; next ; desc @@ 1.12 log @ 2005-10-08 Carl Worth Port to latest glitz (thanks to sunmoon1997 ) * configure.in: Require glitz 0.5.0 or newer. * gtkcairo/gdkcairo.c: (gdkcairo_realize), (gdkcairo_size_allocate): Track glitz API changes. @ text @AC_INIT(gtkcairo/gtkcairo.h) dnl =========================================================================== # Package version number, (as distinct from shared library version) GTKCAIRO_VERSION=0.3 # libtool shared library version # Increment if the interface has additions, changes, removals. LT_CURRENT=2 # Increment any time the source changes; set to # 0 if you increment CURRENT LT_REVISION=1 # Increment if any interfaces have been added; set to 0 # if any interfaces have been removed. removal has # precedence over adding, so set to 0 if both happened. LT_AGE=0 VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE" AC_SUBST(VERSION_INFO) dnl =========================================================================== AM_INIT_AUTOMAKE(gtkcairo, $GTKCAIRO_VERSION, [dist-bzip2]) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE AC_PROG_CC AC_PROG_CPP AM_PROG_LIBTOOL AC_STDC_HEADERS dnl =========================================================================== AC_PATH_XTRA dnl =========================================================================== PKG_CHECK_MODULES(GTKCAIRO, gtk+-2.0 cairo >= 0.6.0) AC_SUBST(GTKCAIRO_CFLAGS) AC_SUBST(GTKCAIRO_LIBS) dnl =========================================================================== AC_ARG_ENABLE(gl, [ --enable-gl Enable OpenGL support (glitz)], [use_gl=$enableval], [use_gl=yes]) if test "x$use_gl" = "xyes"; then PKG_CHECK_MODULES(GL, glitz-glx >= 0.5.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)"]) fi dnl =========================================================================== AC_OUTPUT([ gtkcairo.pc Makefile gtkcairo/Makefile tests/Makefile ]) @ 1.11 log @Sync up with cairo api @ text @d53 1 a53 1 PKG_CHECK_MODULES(GL, glitz-glx >= 0.4.0, [ @ 1.10 log @Track changes to glitz @ text @d42 1 a42 1 PKG_CHECK_MODULES(GTKCAIRO, gtk+-2.0 cairo >= 0.1.1) @ 1.9 log @Better glitz backend support @ text @d53 1 a53 1 PKG_CHECK_MODULES(GL, glitz-glx >= 0.3.0, [ @ 1.8 log @disable default compiling of glitz support @ text @d50 1 a50 1 [use_gl=$enableval], [use_gl=no]) d53 1 a53 1 PKG_CHECK_MODULES(GL, glitz-glx >= 0.2.2, [ @ 1.7 log @integrating changes from david reveman to get in sync with glitz @ text @d49 2 a50 2 [ --disable-gl Disable OpenGL support (glitz)], [use_gl=$enableval], [use_gl=yes]) d56 1 a56 1 use_gl=yes], [use_gl="no (requries glitz-glx)"]) @ 1.6 log @incremented version to 0.3 @ text @d15 1 a15 1 LT_REVISION=0 d53 1 a53 1 PKG_CHECK_MODULES(GL, glitz-glx >= 0.1.3, [ @ 1.5 log @license change to LGPL @ text @d6 1 a6 1 GTKCAIRO_VERSION=0.2 d11 1 a11 1 LT_CURRENT=1 @ 1.4 log @make gtkcairo compile without glitz installed @ text @d53 1 a53 1 PKG_CHECK_MODULES(GL, glitz-glx >= 0.1, [ @ 1.3 log @Use glitz 0.1.3 @ text @d42 1 a42 2 PKG_CHECK_MODULES(GTKCAIRO, gtk+-2.0 cairo >= 0.1.1 glitz-glx >= 0.1.3) d48 13 @ 1.2 log @gtkcairo.c, gtkcairo.h: Add a "redraw" signal. @ text @d43 1 a43 1 PKG_CHECK_MODULES(GTKCAIRO, gtk+-2.0 cairo >= 0.1.1) @ 1.1 log @Initial import of gtkcairo (courtesy of Evan Martin ) @ text @d6 1 a6 1 GTKCAIRO_VERSION=0.1 @