]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
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 | |
65571936 | 9 | * Licence: wxWindows licence |
8cf73271 SC |
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 | ||
8cf73271 SC |
19 | #if defined(__MWERKS__) |
20 | #undef wxUSE_DEBUG_NEW_ALWAYS | |
21 | #define wxUSE_DEBUG_NEW_ALWAYS 0 | |
70d72495 DS |
22 | |
23 | /* DS: Fixes compilation when wxUSE_FATAL_EXCEPTION is 1 */ | |
24 | #ifndef wxTYPE_SA_HANDLER | |
25 | #define wxTYPE_SA_HANDLER int | |
26 | #endif | |
8cf73271 SC |
27 | #endif |
28 | ||
20b69855 SC |
29 | /* |
30 | * use OS X CoreGraphics (1) or QuickDraw (0) for rendering | |
31 | */ | |
32 | ||
33 | #ifndef wxMAC_USE_CORE_GRAPHICS | |
c3f1f8d8 | 34 | #define wxMAC_USE_CORE_GRAPHICS 1 |
20b69855 SC |
35 | #endif |
36 | ||
7a14d082 RD |
37 | /* |
38 | * check graphics context option | |
39 | */ | |
40 | #if wxUSE_GRAPHICS_CONTEXT && !wxMAC_USE_CORE_GRAPHICS | |
41 | # error "wxUSE_GRAPHICS_CONTEXT on wxMac requires wxMAC_USE_CORE_GRAPHICS" | |
42 | #endif | |
43 | ||
db12374b SC |
44 | /* |
45 | * native (1) or emulated (0) toolbar | |
46 | */ | |
47 | ||
48 | #ifndef wxMAC_USE_NATIVE_TOOLBAR | |
c3f1f8d8 | 49 | #define wxMAC_USE_NATIVE_TOOLBAR 1 |
db12374b SC |
50 | #endif |
51 | ||
8cf73271 SC |
52 | #endif |
53 | /* _WX_MAC_CHKCONF_H_ */ | |
54 |