]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Name: wx/mac/chkconf.h | |
3 | * Purpose: Compiler-specific configuration checking | |
4 | * Author: Julian Smart | |
5 | * Modified by: | |
6 | * Created: 01/02/97 | |
7 | * RCS-ID: $Id$ | |
8 | * Copyright: (c) Julian Smart | |
9 | * Licence: wxWindows licence | |
10 | */ | |
11 | ||
12 | #ifndef _WX_MAC_CHKCONF_H_ | |
13 | #define _WX_MAC_CHKCONF_H_ | |
14 | ||
15 | /* | |
16 | * disable the settings which don't work for some compilers | |
17 | */ | |
18 | ||
19 | /* | |
20 | * wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior | |
21 | */ | |
22 | ||
23 | #if defined(__MWERKS__) | |
24 | #undef wxUSE_DEBUG_NEW_ALWAYS | |
25 | #define wxUSE_DEBUG_NEW_ALWAYS 0 | |
26 | #endif | |
27 | ||
28 | /* | |
29 | * use OS X CoreGraphics (1) or QuickDraw (0) for rendering | |
30 | */ | |
31 | ||
32 | #ifndef wxMAC_USE_CORE_GRAPHICS | |
33 | #define wxMAC_USE_CORE_GRAPHICS 0 | |
34 | #endif | |
35 | ||
36 | #endif | |
37 | /* _WX_MAC_CHKCONF_H_ */ | |
38 |