diff options
| author | Ahmad Fatoum <[email protected]> | 2017-11-22 22:47:57 +0100 |
|---|---|---|
| committer | Ahmad Fatoum <[email protected]> | 2017-11-22 22:58:18 +0100 |
| commit | 899e1fbd94f697d95b9684e272de5410b08edc06 (patch) | |
| tree | 4f9847a7bfe715ddcc49eb4a25dc0fea177dcb28 /src/gestures.h | |
| parent | f70a0a996cc7a9a3cd1f5e3c7e3466b1d2528fd3 (diff) | |
| download | raylib-899e1fbd94f697d95b9684e272de5410b08edc06.tar.gz raylib-899e1fbd94f697d95b9684e272de5410b08edc06.zip | |
Avoid duplicate definition of feature macro
Feature macros need to be defined before #including any headers,
preferably through the build system, but this is good enough.
Fixes a compile error on my fork's Travis CI.
Diffstat (limited to 'src/gestures.h')
| -rw-r--r-- | src/gestures.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gestures.h b/src/gestures.h index f4d38dfb..2e343154 100644 --- a/src/gestures.h +++ b/src/gestures.h @@ -148,7 +148,10 @@ float GetGesturePinchAngle(void); // Get gesture pinch ang int __stdcall QueryPerformanceCounter(unsigned long long int *lpPerformanceCount); int __stdcall QueryPerformanceFrequency(unsigned long long int *lpFrequency); #elif defined(__linux__) - #define _POSIX_C_SOURCE 199309L // Required for CLOCK_MONOTONIC if compiled with c99 without gnu ext. + #if _POSIX_C_SOURCE < 199309L + #undef _POSIX_C_SOURCE + #define _POSIX_C_SOURCE 199309L // Required for CLOCK_MONOTONIC if compiled with c99 without gnu ext. + #endif #include <sys/time.h> // Required for: timespec #include <time.h> // Required for: clock_gettime() #endif |
