mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
45af2594a0
code/libs/macosx/libSDL2-2.0.0.dylib has 2.0.8 for x86 and x86_64 and 2.0.1 for PPC. Add 2.0.1 headers for PPC with modifed SDL_platform.h to allow compiling using macOS 10.5 SDK. Using separate headers allows the engine to check the SDL version for enabling newer SDL features.
11 lines
183 B
C
11 lines
183 B
C
|
|
#ifndef _SDLname_h_
|
|
#define _SDLname_h_
|
|
|
|
#if defined(__STDC__) || defined(__cplusplus)
|
|
#define NeedFunctionPrototypes 1
|
|
#endif
|
|
|
|
#define SDL_NAME(X) SDL_##X
|
|
|
|
#endif /* _SDLname_h_ */
|