diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-09-29 08:37:16 +0300 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-10-01 13:55:20 +0200 |
commit | 78253a7836050e1ddd2f0c67d739c956319f3a9a (patch) | |
tree | 633ee683e2bbf40dd7f8b1b97f3ae91901f281e3 /configure.in | |
parent | 8c2662b331993f32da64bd46d4180218f55f2653 (diff) |
Make --enable-64-bit automatically turn on --enable-coretext
Change-Id: I4d2749d8da44fd8b469315c2be0093c19fc20be1
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
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 |