monolithic builds
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46080
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
virtual bool Pending() const;
virtual bool Dispatch();
-protected:
// implement base class pure virtual
virtual void WakeUp();
};
#include "wx/log.h"
#include "wx/evtloop.h"
+//this code should not be compiled when GUI is defined
+//(monolithic build issue)
+#if !wxUSE_GUI
+
#include <signal.h>
#include <unistd.h>
return true;
}
+
+#endif // !wxUSE_GUI
#define TRACE_EVENTS _T("events")
+//this code should not be compiled when GUI is defined
+//(monolithic build issue)
+#if !wxUSE_GUI
+
// ===========================================================================
// wxEventLoop::PipeIOHandler implementation
// ===========================================================================
wxTheApp->CheckSignal();
}
+#endif // !wxUSE_GUI