diff --git a/src/external/glfw/src/posix_poll.c b/src/external/glfw/src/posix_poll.c index b53e36e80..55ef606d0 100644 --- a/src/external/glfw/src/posix_poll.c +++ b/src/external/glfw/src/posix_poll.c @@ -24,7 +24,9 @@ // //======================================================================== -#define _GNU_SOURCE +#if !defined(_GNU_SOURCE) + #define _GNU_SOURCE +#endif #include "internal.h" diff --git a/src/external/glfw/src/wl_window.c b/src/external/glfw/src/wl_window.c index 505166eff..356e5eee1 100644 --- a/src/external/glfw/src/wl_window.c +++ b/src/external/glfw/src/wl_window.c @@ -25,7 +25,9 @@ // //======================================================================== -#define _GNU_SOURCE +#if !defined(_GNU_SOURCE) + #define _GNU_SOURCE +#endif #include "internal.h"