]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/chkconf.h
Updated wxPallete information.
[wxWidgets.git] / include / wx / mac / chkconf.h
CommitLineData
b45f79ec
VZ
1/*
2 * Name: wx/mac/chkconf.h
3 * Purpose: Mac-specific config settings checks
4 * Author: Vadim Zeitlin
5 * Modified by:
6 * Created: 2005-04-05 (extracted from wx/chkconf.h)
7 * RCS-ID: $Id$
8 * Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwidgets.org>
9 * Licence: wxWindows licence
10 */
11
12/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
13
14#if wxUSE_UNICODE
15# if !TARGET_CARBON
16# ifdef wxABORT_ON_CONFIG_ERROR
17# error "wxUSE_UNICODE is only supported for Carbon Targets."
18# else
19# define wxUSE_UNICODE 0
20# endif
21# endif
22#endif
23
d74358bc
VZ
24#if wxUSE_STACKWALKER
25 /* not supported under Mac */
26# undef wxUSE_STACKWALKER
27# define wxUSE_STACKWALKER 0
28#endif /* wxUSE_STACKWALKER */
29
ca80fdee 30#ifdef __WXMAC_CLASSIC__
b45f79ec 31# include "wx/mac/classic/chkconf.h"
9ea759d4 32#else
b45f79ec 33# include "wx/mac/carbon/chkconf.h"
0856acc6 34#endif