By default, graphite is only enabled on WINNT and Linux, which is wrong.

The only platform it isn't available on is Mac OS X. The attached patch
reverses the check logic and only disables graphite support on this operating
system.

-- 
Francois Tigeot
>From 0f0066e5c38b1b8c2bb4d633de230f13d03b8f77 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Tigeot?= <ftig...@wolfpond.org>
Date: Thu, 30 May 2013 09:50:46 +0200
Subject: [PATCH] The only OS graphite is not available on is MacOS X

Change-Id: Id63520c60bd4c7f44c271fdb2a832627c42b8738
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 13f84e9..a078b68 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8424,7 +8424,7 @@ dnl Graphite
 dnl ===================================================================
 
 AC_MSG_CHECKING([whether to enable graphite support])
-if test "$_os" = "WINNT" -o "$_os" = "Linux" && test "$enable_graphite" = "" -o "$enable_graphite" != "no"; then
+if test "$_os" != "Darwin" && test "$enable_graphite" = "" -o "$enable_graphite" != "no"; then
     AC_MSG_RESULT([yes])
     ENABLE_GRAPHITE="TRUE"
     AC_DEFINE(ENABLE_GRAPHITE)
-- 
1.8.2.2

_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to