Mercurial > emacs
changeset 81559:0e17f76d05e4
(USE_CG_DRAWING): Don't require USE_ATSUI.
(USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Fri, 22 Jun 2007 09:05:25 +0000 |
parents | 9bdc3e434294 |
children | 3ce0ebdd2017 |
files | src/macgui.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/macgui.h Fri Jun 22 08:41:25 2007 +0000 +++ b/src/macgui.h Fri Jun 22 09:05:25 2007 +0000 @@ -98,7 +98,7 @@ /* Whether to use Quartz 2D routines for drawing operations other than texts. */ #ifndef USE_CG_DRAWING -#if USE_ATSUI && MAC_OS_X_VERSION_MAX_ALLOWED >= 1020 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020 #define USE_CG_DRAWING 1 #endif #endif @@ -119,7 +119,7 @@ /* Whether to use HIToolbar. */ #ifndef USE_MAC_TOOLBAR -#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030 && MAC_OS_X_VERSION_MIN_REQUIRED != 1020 +#if USE_CG_DRAWING && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030 && MAC_OS_X_VERSION_MIN_REQUIRED != 1020 #define USE_MAC_TOOLBAR 1 #endif #endif