Author: af
Date: Fri Jul 6 07:17:06 2012
New Revision: 1358058
URL: http://svn.apache.org/viewvc?rev=1358058&view=rev
Log:
#i119170# Obey --without-fonts switch for catgory-B fonts.
Patch by: NAKATA Maho
Review by: Andre Fischer
Modified:
incubator/ooo/trunk/main/configure.in
Modified: incubator/ooo/trunk/main/configure.in
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/configure.in?rev=1358058&r1=1358057&r2=1358058&view=diff
==============================================================================
--- incubator/ooo/trunk/main/configure.in (original)
+++ incubator/ooo/trunk/main/configure.in Fri Jul 6 07:17:06 2012
@@ -6856,7 +6856,7 @@ dnl Test whether to include category-B f
dnl ===================================================================
WITH_CATB_FONTS=
AC_MSG_CHECKING([whether to include category B fonts])
-if test "x$enable_category_b_fonts" = "xyes"; then
+if test "x$enable_category_b_fonts" = "xyes" && test "x$with_fonts" != "xno"; then
AC_MSG_RESULT([yes])
BUILD_TYPE="$BUILD_TYPE CATB_FONTS"
WITH_CATB_FONTS=YES
|