summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-02-12 15:44:21 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-02-12 15:44:21 -0500
commitd05f08bceebe832844ab97a5660af4fa1452697d (patch)
treef31f227266755e2057c86b06e857a2f3bb262621
parentfd3181c7bfdb468557d8c845a016b19c5a897955 (diff)
[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.
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 066dfe49..4a1ea499 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