summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-09-29 08:37:16 +0300
committerTor Lillqvist <tml@iki.fi>2012-09-29 08:37:16 +0300
commitd756f2a304ed0921e1791c8eb91ce7fb7a085529 (patch)
treec0e57cc7e9eea34c93173b44d127e3a56f6282f4 /configure.in
parent4671e25d99bb2ad0f4f8f68c25fcc1bfce9e79b8 (diff)
Make --enable-64-bit automatically turn on --enable-coretext
Change-Id: I4d2749d8da44fd8b469315c2be0093c19fc20be1
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index aca0eafc5f6c..7ba3b7a9060a 100644
--- a/configure.in
+++ b/configure.in
@@ -10645,7 +10645,7 @@ dnl ===================================================================
ENABLE_CORETEXT=NO
if test "$_os" = "Darwin"; then
AC_MSG_CHECKING([whether to use CoreText framework])
- if test "$enable_coretext" = "yes"; then
+ if test "$enable_coretext" = yes -o "$BITNESS_OVERRIDE" = 64; then
AC_MSG_RESULT([yes])
ENABLE_CORETEXT=YES
else