diff options
author | Sven Gothel <[email protected]> | 2013-09-13 19:21:52 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-09-13 19:21:52 +0200 |
commit | 5dce252bfcc49995c2bda1d91e010c4c73f71ddb (patch) | |
tree | 67a8e01916b84a32f475c788dea24d3d814712a0 /src | |
parent | 4b866d2686ab9c3fd7cf6708925b4663ad81e359 (diff) |
Add support for clang ; Use __APPLE__ predefined macro
Diffstat (limited to 'src')
-rw-r--r-- | src/nativewindow/native/JAWT_DrawingSurfaceInfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nativewindow/native/JAWT_DrawingSurfaceInfo.c b/src/nativewindow/native/JAWT_DrawingSurfaceInfo.c index 2a6651007..5c77b6d46 100644 --- a/src/nativewindow/native/JAWT_DrawingSurfaceInfo.c +++ b/src/nativewindow/native/JAWT_DrawingSurfaceInfo.c @@ -43,7 +43,7 @@ #define PLATFORM_DSI_SIZE sizeof(JAWT_Win32DrawingSurfaceInfo) #elif defined(linux) || defined(__sun) || defined(__FreeBSD__) || defined(_HPUX) #define PLATFORM_DSI_SIZE sizeof(JAWT_X11DrawingSurfaceInfo) -#elif defined(macosx) +#elif defined(__APPLE__) #define PLATFORM_DSI_SIZE sizeof(JAWT_MacOSXDrawingSurfaceInfo) #else ERROR: port JAWT_DrawingSurfaceInfo.c to your platform |