#endif //WX_PRECOMP
#include "wx/apptrait.h"
+#include "wx/utils.h"
#include "wx/unix/execute.h"
// for waitpid()
// misc other stuff
// ----------------------------------------------------------------------------
-// WXWIN_OS_DESCRIPTION is normally defined by configure
-#if defined( __MWERKS__ ) && defined(__MACH__)
- #define WXWIN_OS_DESCRIPTION "MacOS X"
-#endif
+// this is in mac/utils.cpp under Mac
+#ifndef __WXMAC__
int wxConsoleAppTraits::GetOSVersion(int *verMaj, int *verMin)
{
int major, minor;
char name[256];
- if ( sscanf(WXWIN_OS_DESCRIPTION, "%s %d.%d", name, &major, &minor) != 3 )
+ if ( sscanf(WXWIN_OS_DESCRIPTION, "%255s %d.%d", name, &major, &minor) != 3 )
{
// unreckognized uname string format
major =
return wxUNIX;
}
+#endif // __WXMAC__
+