]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/dfb/chkconf.h
2 * Name: wx/dfb/chkconf.h
3 * Author: Vaclav Slavik
4 * Purpose: Compiler-specific configuration checking
6 * Copyright: (c) 2006 REA Elektronik GmbH
7 * Licence: wxWindows licence
10 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
12 #ifndef _WX_DFB_CHKCONF_H_
13 #define _WX_DFB_CHKCONF_H_
15 #ifndef __WXUNIVERSAL__
16 # error "wxDirectFB cannot be built without wxUniversal"
20 # error "wxFileConfig is required by wxDFB port"
23 #if wxUSE_SOCKETS && !wxUSE_CONSOLE_EVENTLOOP
24 # ifdef wxABORT_ON_CONFIG_ERROR
25 # error "wxSocket requires wxSelectDispatcher in wxDFB"
27 # undef wxUSE_CONSOLE_EVENTLOOP
28 # define wxUSE_CONSOLE_EVENTLOOP 1
33 # ifdef wxABORT_ON_CONFIG_ERROR
34 # error "wxDataObject not supported in wxDFB"
37 # define wxUSE_DATAOBJ 0
41 #endif /* _WX_DFB_CHKCONF_H_ */