This commit is contained in:
WillyJL 2025-01-17 11:07:40 +01:00 committed by GitHub
commit 57abcddd3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 0 deletions

View file

@ -24,6 +24,8 @@
//
//========================================================================
#define _GNU_SOURCE
#if defined(_MSC_VER)
// Make MS math.h define M_PI
#define _USE_MATH_DEFINES

View file

@ -25,6 +25,8 @@
//
//========================================================================
#define _GNU_SOURCE
#include "internal.h"
#if defined(GLFW_BUILD_LINUX_JOYSTICK)

View file

@ -25,6 +25,8 @@
//
//========================================================================
#define _GNU_SOURCE
#include "internal.h"
#if defined(GLFW_BUILD_POSIX_TIMER)

View file

@ -24,6 +24,8 @@
//
//========================================================================
#define _GNU_SOURCE
#include "internal.h"
#if defined(_GLFW_WAYLAND)

View file

@ -40,7 +40,9 @@
#include <sys/mman.h>
#include <sys/timerfd.h>
#include <poll.h>
#if __has_include(<linux/input-event-codes.h>)
#include <linux/input-event-codes.h>
#endif
#include "wayland-client-protocol.h"
#include "xdg-shell-client-protocol.h"