summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2006-08-17 22:10:27 -0400
committerBehdad Esfahbod <behdad@behdad.org>2006-08-17 22:10:27 -0400
commit64dd7a8203b6e393d9f763d49eea6dfb7bd13e0d (patch)
tree8cba57ee9e6919896b9b29d2e5bc21be462f3264
parent6f8cf53b1e1ccdbe1ab6a275656b19c6e5120e40 (diff)
[SVG] Make dependent on --enable-png (and increase cache-version to 2)
-rw-r--r--ROADMAP2
-rw-r--r--configure.in5
2 files changed, 5 insertions, 2 deletions
diff --git a/ROADMAP b/ROADMAP
index 1c8b1c5dc..b2193d1c6 100644
--- a/ROADMAP
+++ b/ROADMAP
@@ -32,7 +32,7 @@ Themes and Schedules
cairo-1.2.4 (August 21, 2006): Fix build bugs with 1.2.2
- xlib detection requires libXt
- 7744: Compile troubles on AIX
- - SVG backend requires PNG
+✓- SVG backend requires PNG
✓- 7888: assertion failure with rotated bitmap glyphs
✓- 7889: cairo_text_path assertion failure on bitmap fonts
- Type1 on Windows (Adrian has a patch)
diff --git a/configure.in b/configure.in
index 6bc226e1d..f9cba5def 100644
--- a/configure.in
+++ b/configure.in
@@ -94,7 +94,7 @@ dnl cairo_cache_version should be increased every time that the backend
dnl detection stuff changes in a way that removing the config.cache file may be
dnl needed for correct operation.
dnl
-m4_define(cairo_cache_version, 1)
+m4_define(cairo_cache_version, 2)
dnl ===========================================================================
dnl
@@ -500,6 +500,9 @@ 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, [
+ if test "x$use_png" != "xyes"; then
+ use_svg="no (requires --enable-png)"
+ fi
])
if test "x$use_svg" = "xyes"; then