1 /*
2  * Name:        wx/motif/chkconf.h
3  * Purpose:     Motif-specific config settings checks
4  * Author:      Vadim Zeitlin
5  * Modified by:
6  * Created:     2005-04-05 (extracted from wx/chkconf.h)
7  * Copyright:   (c) 2005 Vadim Zeitlin <vadim@wxwidgets.org>
8  * Licence:     wxWindows licence
9  */
10 
11 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
12 
13 #if !defined(wxUSE_GADGETS)
14 #   define wxUSE_GADGETS 0
15 #endif
16 
17 /* wxGraphicsContext is not implemented in wxMotif */
18 #if wxUSE_GRAPHICS_CONTEXT
19 #   undef wxUSE_GRAPHICS_CONTEXT
20 #   define wxUSE_GRAPHICS_CONTEXT 0
21 #endif
22