]> git.saurik.com Git - wxWidgets.git/blob - include/wx/unix/chkconf.h
remove extra semicolons
[wxWidgets.git] / include / wx / unix / chkconf.h
1 /*
2 * Name: wx/unix/chkconf.h
3 * Purpose: Unix-specific config settings consistency checks
4 * Author: Vadim Zeitlin
5 * Created: 2007-07-14
6 * RCS-ID: $Id$
7 * Copyright: (c) 2007 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 wxUSE_CONSOLE_EVENTLOOP
14 # if !wxUSE_SELECT_DISPATCHER && !wxUSE_EPOLL_DISPATCHER
15 # ifdef wxABORT_ON_CONFIG_ERROR
16 # error "wxSelect/EpollDispatcher needed for console event loop"
17 # else
18 # undef wxUSE_SELECT_DISPATCHER
19 # define wxUSE_SELECT_DISPATCHER 1
20 # endif
21 # endif
22 #endif /* wxUSE_CONSOLE_EVENTLOOP */