From e195c8c95fb154d035bab400952fc81c62439549 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sun, 22 Jul 2001 14:23:55 +0000 Subject: [PATCH 1/1] correction for Mac OS compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/opengl/cube/cube.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/samples/opengl/cube/cube.cpp b/samples/opengl/cube/cube.cpp index 75dde17d4e..a92f940d29 100644 --- a/samples/opengl/cube/cube.cpp +++ b/samples/opengl/cube/cube.cpp @@ -34,8 +34,13 @@ #include "cube.h" #ifndef __WXMSW__ // for wxStopWatch, see remark below -#include -#include + #if defined(__WXMAC__) && !defined(__DARWIN__) + #include + #include + #else + #include + #include + #endif #else #include #endif -- 2.47.2