]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/platform.h
Added Python methods to wxStyledTextCtrl that allow to get/set text in
[wxWidgets.git] / include / wx / platform.h
index a7a9921378ffd313a5b356a603ca3c3db4957b13..e3e59593ee1a07890e9d527c3de15ae2d6978869 100644 (file)
@@ -34,6 +34,7 @@
 #        define __WXMAC_OSX__
 #        define __WXMAC_CARBON__
 #        ifdef __WXMAC_XCODE__
+#            include <unistd.h>
 #            include "wx/mac/carbon/config_xcode.h"
 #        endif
 #    else
 
 /*
    old C++ headers (like <iostream.h>) declare classes in the global namespace
-   while the new, standard ones (like <iostream>) do it in std:: namespace
+   while the new, standard ones (like <iostream>) do it in std:: namespace,
+   unless it's an old gcc version.
 
    using this macro allows constuctions like "wxSTD iostream" to work in
    either case
  */
-#if !wxUSE_IOSTREAMH
+#if !wxUSE_IOSTREAMH && (!defined(__GNUC__) || ( __GNUC__ > 2 ) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
 #    define wxSTD std::
 #else
 #    define wxSTD