[Libreoffice-commits] .: configure.in

Lubos Lunak llunak at kemper.freedesktop.org
Thu Mar 29 22:26:27 PDT 2012


 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e20fa170160e1bb1953ad171e092edfb3de531af
Author: Luboš Luňák <l.lunak at suse.cz>
Date:   Fri Mar 30 07:25:07 2012 +0200

    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).

diff --git a/configure.in b/configure.in
index fc743c8..bed0180 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])
 


More information about the Libreoffice-commits mailing list