Skip to content

Commit 588f0c1

Browse files
neoasceticest31
authored andcommittedSep 6, 2015
Fix building on OSX, broken since "Clean up threading"
Commit e4bff8b - Clean up threading by @ShadowNinja has broken the OSX build. Including things inside a namespace isn't good. Also fixes #3124.
1 parent 91bf68e commit 588f0c1

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed
 

‎src/porting.h

+9-10
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
108108
#include <CoreFoundation/CoreFoundation.h>
109109
#endif
110110

111+
#ifndef _WIN32 // Posix
112+
#include <sys/time.h>
113+
#include <time.h>
114+
#if defined(__MACH__) && defined(__APPLE__)
115+
#include <mach/clock.h>
116+
#include <mach/mach.h>
117+
#endif
118+
#endif
119+
111120
namespace porting
112121
{
113122

@@ -158,10 +167,6 @@ void initIrrlicht(irr::IrrlichtDevice * );
158167
Overflow can occur at any value higher than 10000000.
159168
*/
160169
#ifdef _WIN32 // Windows
161-
#ifndef _WIN32_WINNT
162-
#define _WIN32_WINNT 0x0501
163-
#endif
164-
#include <windows.h>
165170

166171
inline u32 getTimeS()
167172
{
@@ -190,12 +195,6 @@ void initIrrlicht(irr::IrrlichtDevice * );
190195
}
191196

192197
#else // Posix
193-
#include <sys/time.h>
194-
#include <time.h>
195-
#if defined(__MACH__) && defined(__APPLE__)
196-
#include <mach/clock.h>
197-
#include <mach/mach.h>
198-
#endif
199198

200199
inline u32 getTimeS()
201200
{

‎src/threading/thread.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ DEALINGS IN THE SOFTWARE.
8080
#include <sys/processor.h>
8181
#elif defined(__APPLE__)
8282
#include <mach/mach_init.h>
83-
#include <mach/thread_policy.h>
83+
#include <mach/thread_act.h>
8484
#endif
8585

8686

0 commit comments

Comments
 (0)
Please sign in to comment.