From c4bb9e1ca60fd7e82548aa2e5d72e9ab7efda9ca Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 13 Jan 2022 15:27:41 -0500 Subject: Define _POSIX_C_SOURCE globally in the build system Using inconsistent defines like this that affect the standard library implementation can cause issues. So, doing this consistently for the whole library is a better approach, although it unfortunately makes the code more difficult to compile manually. --- src/system.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/system.c') diff --git a/src/system.c b/src/system.c index f706902d..c3e31912 100644 --- a/src/system.c +++ b/src/system.c @@ -14,8 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define _POSIX_C_SOURCE 200809L /* for posix_memalign and posix_fadvise */ - #include "system.h" #include "serd_config.h" -- cgit v1.2.1