aboutsummaryrefslogtreecommitdiff
path: root/xcursor
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2024-02-15 15:34:49 +0100
committerSimon Ser <contact@emersion.fr>2024-02-15 15:41:12 +0100
commit842093bb843ae6c719c2b1cf32eb749cab9e46ca (patch)
treee35b8ce8e288fbdfcc78994a49b332b53867a3cd /xcursor
parentefa706b76902f50582c46b5b9f730696d04801b0 (diff)
Define _POSIX_C_SOURCE globally
Stop trying to maintain a per-file _POSIX_C_SOURCE. Instead, require POSIX.1-2008 globally. A lot of core source files depend on that already. Some care must be taken on a few select files where we need a bit more than POSIX. Some files need XSI extensions (_XOPEN_SOURCE) and some files need BSD extensions (_DEFAULT_SOURCE). In both cases, these feature test macros imply _POSIX_C_SOURCE. Make sure to not define both these macros and _POSIX_C_SOURCE explicitly to avoid POSIX requirement conflicts (e.g. _POSIX_C_SOURCE says POSIX.1-2001 but _XOPEN_SOURCE says POSIX.1-2008). Additionally, there is one special case in render/vulkan/vulkan.c. That file needs major()/minor(), and these are system-specific. On FreeBSD, _POSIX_C_SOURCE hides system-specific symbols so we need to make sure it's not defined for this file. On Linux, we can explicitly include <sys/sysmacros.h> and ensure that apart from symbols defined there the file only uses POSIX toys.
Diffstat (limited to 'xcursor')
-rw-r--r--xcursor/wlr_xcursor.c1
-rw-r--r--xcursor/xcursor.c4
2 files changed, 2 insertions, 3 deletions
diff --git a/xcursor/wlr_xcursor.c b/xcursor/wlr_xcursor.c
index 620b6c78..c57d8175 100644
--- a/xcursor/wlr_xcursor.c
+++ b/xcursor/wlr_xcursor.c
@@ -23,7 +23,6 @@
* SOFTWARE.
*/
-#define _POSIX_C_SOURCE 200809L
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/xcursor/xcursor.c b/xcursor/xcursor.c
index 17ad758b..66346709 100644
--- a/xcursor/xcursor.c
+++ b/xcursor/xcursor.c
@@ -23,8 +23,8 @@
* SOFTWARE.
*/
-#define _POSIX_C_SOURCE 200809L
-#define _DEFAULT_SOURCE
+#undef _POSIX_C_SOURCE
+#define _DEFAULT_SOURCE // for d_type in struct dirent
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>