summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-03-30 07:25:07 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-03-30 07:25:07 +0200
commite20fa170160e1bb1953ad171e092edfb3de531af (patch)
tree2459d3669205d3c4693fdea37d427c88f82f5bc5
parent3ddf85d391758b346fff86e8f44a6121d608c503 (diff)
do not make using system cairo depend on cairo canvas feature
Cairo canvas is a LO feature, it doesn't make sense to use system cairo only if the feature is enabled. Fixes mingw build (where our cairo copy does not build for whatever reason).
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index fc743c8c705c..bed018034862 100644
--- a/configure.in
+++ b/configure.in
@@ -10069,7 +10069,7 @@ SYSTEM_CAIRO=""
AC_MSG_CHECKING([whether to use the system cairo])
-if test "$enable_cairo_canvas" = "yes" -a "$with_system_cairo" = "yes"; then
+if test "$with_system_cairo" = "yes"; then
SYSTEM_CAIRO=YES
AC_MSG_RESULT([yes])