# HG changeset patch # User YAMAMOTO Mitsuharu # Date 1182503125 0 # Node ID 0e17f76d05e43b3a25768e8c2e7792654e20d168 # Parent 9bdc3e434294ea798c6006d343bd8b4cd805c6ca (USE_CG_DRAWING): Don't require USE_ATSUI. (USE_MAC_TOOLBAR): Require USE_CG_DRAWING. diff -r 9bdc3e434294 -r 0e17f76d05e4 src/macgui.h --- 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