]> git.saurik.com Git - wxWidgets.git/commitdiff
fir for Sun CC 6.0 compilation of wxGTK
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 23 Apr 2001 23:34:07 +0000 (23:34 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 23 Apr 2001 23:34:07 +0000 (23:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9864 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/fontutil.cpp

index f3a7778e52b5282c078597f759e8f9ca04c032e1..3b3444b4abcb17719aea9329ea36b1d327389c62 100644 (file)
 #endif // PCH
 
 #ifdef __X__
-#ifdef __VMS__
-#pragma message disable nosimpint
-#endif
-#include <X11/Xlib.h>
-#ifdef __VMS__
-#pragma message enable nosimpint
-#endif
+    #ifdef __VMS__
+        #pragma message disable nosimpint
+    #endif
+
+    #include <X11/Xlib.h>
+
+    #ifdef __VMS__
+        #pragma message enable nosimpint
+    #endif
 
     #include "wx/utils.h"       // for wxGetDisplay()
 #elif defined(__WXGTK__)
-    #include "gdk/gdk.h"
+    // we have to declare struct tm to avoid problems with first forward
+    // declaring it in C code (glib.h included from gdk.h does it) and then
+    // defining it when time.h is included from the headers below - this is
+    // known not to work at least with Sun CC 6.01
+    #include <time.h>
+
+    #include <gdk/gdk.h>
 #endif
 
 #include "wx/fontutil.h"