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?= <ftigeot@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
Context
- [PATCH] Fix configure.ac check for graphite · Francois Tigeot
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.