[cairo-commit] configure.in
Behdad Esfahbod
behdad at kemper.freedesktop.org
Tue Feb 12 12:49:50 PST 2008
configure.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit d05f08bceebe832844ab97a5660af4fa1452697d
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Tue Feb 12 15:44:21 2008 -0500
[configure.in] Make PS/PDF/SVG default enabled
Previously they were default auto-detected. We really want people
have to go out of their way to not build them, hence the change.
diff --git a/configure.in b/configure.in
index 066dfe4..4a1ea49 100644
--- a/configure.in
+++ b/configure.in
@@ -596,7 +596,7 @@ fi
dnl ===========================================================================
-CAIRO_BACKEND_ENABLE(ps, PostScript, ps, PS_SURFACE, auto, [
+CAIRO_BACKEND_ENABLE(ps, PostScript, ps, PS_SURFACE, yes, [
# The ps backend requires zlib.
use_ps=$have_libz
ps_NONPKGCONFIG_LIBS=-lz
@@ -618,7 +618,7 @@ AM_CONDITIONAL(CAIRO_CAN_TEST_PS_SURFACE, test "x$test_ps" = "xyes")
dnl ===========================================================================
-CAIRO_BACKEND_ENABLE(pdf, PDF, pdf, PDF_SURFACE, auto, [
+CAIRO_BACKEND_ENABLE(pdf, PDF, pdf, PDF_SURFACE, yes, [
# The pdf backend requires zlib.
use_pdf=$have_libz
pdf_NONPKGCONFIG_LIBS=-lz
@@ -648,7 +648,7 @@ AM_CONDITIONAL(CAIRO_HAS_MULTI_PAGE_SURFACES, test "x$use_ps" = "xyes" -o "x$use
dnl ===========================================================================
-CAIRO_BACKEND_ENABLE(svg, SVG, svg, SVG_SURFACE, auto, [
+CAIRO_BACKEND_ENABLE(svg, SVG, svg, SVG_SURFACE, yes, [
if test "x$use_png" != "xyes"; then
use_svg="no (requires --enable-png)"
fi
More information about the cairo-commit
mailing list