]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mgl/chkconf.h
Warning fix for wxOS2 night build.
[wxWidgets.git] / include / wx / mgl / chkconf.h
CommitLineData
b8af111f
WS
1/*
2 * Name: wx/mgl/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/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
13
14#ifndef _WX_MGL_CHKCONF_H_
15#define _WX_MGL_CHKCONF_H_
16
17#ifdef __WATCOMC__
18
19/* Watcom builds for MGL port are setup.h driven and setup.h is
20 automatically generated from include/wx/setup_inc.h so we have
21 to disable here features not supported currently or enable
22 features required */
23
24#if wxUSE_STACKWALKER
25# undef wxUSE_STACKWALKER
26# define wxUSE_STACKWALKER 0
27#endif /* wxUSE_STACKWALKER */
28
29#if wxUSE_ACCEL
30# undef wxUSE_ACCEL
31# define wxUSE_ACCEL 0
32#endif /* wxUSE_ACCEL */
33
34#if wxUSE_DYNLIB_CLASS
35# undef wxUSE_DYNLIB_CLASS
36# define wxUSE_DYNLIB_CLASS 0
37#endif /* wxUSE_DYNLIB_CLASS */
38
39#if wxUSE_DYNAMIC_LOADER
40# undef wxUSE_DYNAMIC_LOADER
41# define wxUSE_DYNAMIC_LOADER 0
42#endif /* wxUSE_DYNAMIC_LOADER */
43
44#if wxUSE_ODBC
45# undef wxUSE_ODBC
46# define wxUSE_ODBC 0
47#endif /* wxUSE_ODBC */
48
49#if wxUSE_DATAOBJ
50# undef wxUSE_DATAOBJ
51# define wxUSE_DATAOBJ 0
52#endif
53
54#if wxUSE_CLIPBOARD
55# undef wxUSE_CLIPBOARD
56# define wxUSE_CLIPBOARD 0
57#endif /* wxUSE_CLIPBOARD */
58
ef1717a9
VZ
59#if wxUSE_DISPLAY
60# undef wxUSE_DISPLAY
61# define wxUSE_DISPLAY 0
62#endif /* wxUSE_DISPLAY */
63
b8af111f
WS
64#if wxUSE_SOCKETS
65# undef wxUSE_SOCKETS
66# define wxUSE_SOCKETS 0
67#endif /* wxUSE_SOCKETS */
68
3ab14c03
WS
69#if wxUSE_THREADS
70# undef wxUSE_THREADS
71# define wxUSE_THREADS 0
72#endif /* wxUSE_SOCKETS */
73
b8af111f
WS
74#if wxUSE_PROTOCOL
75# undef wxUSE_PROTOCOL
76# define wxUSE_PROTOCOL 0
77#endif /* wxUSE_PROTOCOL */
78
79#if wxUSE_URL
80# undef wxUSE_URL
81# define wxUSE_URL 0
82#endif /* wxUSE_URL */
83
84#if wxUSE_FS_INET
85# undef wxUSE_FS_INET
86# define wxUSE_FS_INET 0
87#endif /* wxUSE_FS_INET */
88
89#endif /* __WATCOM__ */
90
91#endif /* _WX_MGL_CHKCONF_H_ */