-// ----------------------------------------------------------------------------
-// wxExecute support
-// ----------------------------------------------------------------------------
-
-bool wxConsoleAppTraits::CreateEndProcessPipe(wxExecuteData& WXUNUSED(data))
-{
- // nothing to do, so always ok
- return true;
-}
-
-bool
-wxConsoleAppTraits::IsWriteFDOfEndProcessPipe(wxExecuteData& WXUNUSED(data),
- int WXUNUSED(fd))
-{
- // we don't have any pipe
- return false;
-}
-
-void
-wxConsoleAppTraits::DetachWriteFDOfEndProcessPipe(wxExecuteData& WXUNUSED(data))
-{
- // nothing to do
-}
-
-
-int
-wxConsoleAppTraits::WaitForChild(wxExecuteData& execData)
-{
- wxASSERT_MSG( execData.flags & wxEXEC_SYNC,
- wxT("async execution not supported yet") );
-
- int exitcode = 0;
- if ( waitpid(execData.pid, &exitcode, 0) == -1 || !WIFEXITED(exitcode) )
- {
- wxLogSysError(_("Waiting for subprocess termination failed"));
- }
-
- return exitcode;
-}
-
-// ----------------------------------------------------------------------------
-// misc other stuff
-// ----------------------------------------------------------------------------
-
-// this is in mac/utils.cpp under Mac and MGL
-#if !defined(__WXMAC__) && !defined(__WXMGL__)
-
-wxToolkitInfo& wxConsoleAppTraits::GetToolkitInfo()
-{
- static wxToolkitInfo info;
- int major, minor;
-
- FILE *f = popen("uname -r", "r");
- if (f)
- {
- char buf[32];
- size_t c = fread(buf, 1, sizeof(buf) - 1, f);
- pclose(f);
- buf[c] = '\0';
- if ( sscanf(buf, "%d.%d", &major, &minor) != 2 )
- {
- // unrecognized uname string format
- major =
- minor = -1;
- }
- }
- else
- {
- // failed to run uname
- major =
- minor = -1;
- }
-
- info.versionMajor = major;
- info.versionMinor = minor;
- info.name = _T("wxBase");
- info.os = wxUNIX;
-
- return info;
-}