]>
Commit | Line | Data |
---|---|---|
01ebf752 JS |
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 | #endif | |
29 | /* _WX_MAC_CHKCONF_H_ */ | |
30 |