mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-09 22:35:32 +00:00
Fixed build warning on iOS
This commit is contained in:
parent
b08e57e926
commit
086c74556d
|
@ -134,6 +134,7 @@
|
||||||
#define HAVE_NANOSLEEP 1
|
#define HAVE_NANOSLEEP 1
|
||||||
#define HAVE_SYSCONF 1
|
#define HAVE_SYSCONF 1
|
||||||
#define HAVE_SYSCTLBYNAME 1
|
#define HAVE_SYSCTLBYNAME 1
|
||||||
|
#define HAVE_O_CLOEXEC 1
|
||||||
|
|
||||||
/* enable iPhone version of Core Audio driver */
|
/* enable iPhone version of Core Audio driver */
|
||||||
#define SDL_AUDIO_DRIVER_COREAUDIO 1
|
#define SDL_AUDIO_DRIVER_COREAUDIO 1
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
|
|
||||||
#include "SDL_config.h"
|
#include "SDL_config.h"
|
||||||
|
|
||||||
#ifndef HAVE_O_CLOEXEC
|
#if !defined(O_CLOEXEC) && !defined(HAVE_O_CLOEXEC)
|
||||||
#define O_CLOEXEC 0
|
#define O_CLOEXEC 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue