1 diff -up cairo-1.6.4/configure.in-pixman cairo-1.6.4/configure.in 2 --- cairo-1.6.4/configure.in-pixman 2008-04-18 15:00:28.576117863 +0100 3 +++ cairo-1.6.4/configure.in 2008-04-18 15:00:31.252730934 +0100 4 @@ -305,7 +305,10 @@ PKG_CHECK_MODULES(pixman, $PIXMAN_REQUIR 5 [AC_MSG_ERROR([pixman >= $PIXMAN_VERSION is required 6 (http://cairographics.org/releases/)])]) 7 8 -CAIRO_REQUIRES="$PIXMAN_REQUIRES $CAIRO_REQUIRES" 9 +# Comment out since we don't want to depend on pixman since we're including 10 +# pixman in libcairo itself until X deliver it. 11 +# 12 +# CAIRO_REQUIRES="$PIXMAN_REQUIRES $CAIRO_REQUIRES" 13 CAIRO_CFLAGS="$pixman_CFLAGS $CAIRO_CFLAGS" 14 CAIRO_LIBS="$pixman_LIBS $CAIRO_LIBS" 15 16 17