diff options
author | David Robillard <d@drobilla.net> | 2022-01-13 15:27:41 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-13 15:33:51 -0500 |
commit | c4bb9e1ca60fd7e82548aa2e5d72e9ab7efda9ca (patch) | |
tree | 67da9e248bae7e66a7eeae98659592ea36c47bcd /src | |
parent | 7d2183d13b298f33733e67184dd86a34a71723bf (diff) | |
download | serd-c4bb9e1ca60fd7e82548aa2e5d72e9ab7efda9ca.tar.gz serd-c4bb9e1ca60fd7e82548aa2e5d72e9ab7efda9ca.tar.bz2 serd-c4bb9e1ca60fd7e82548aa2e5d72e9ab7efda9ca.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/.clang-tidy | 2 | ||||
-rw-r--r-- | src/serdi.c | 2 | ||||
-rw-r--r-- | src/system.c | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy index b47291f2..d39ee7e8 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -7,8 +7,6 @@ Checks: > -bugprone-easily-swappable-parameters, -bugprone-reserved-identifier, -bugprone-suspicious-string-compare, - -cert-dcl37-c, - -cert-dcl51-cpp, -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling, -concurrency-mt-unsafe, -google-readability-todo, diff --git a/src/serdi.c b/src/serdi.c index 4e06ac95..06d83816 100644 --- a/src/serdi.c +++ b/src/serdi.c @@ -14,8 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define _POSIX_C_SOURCE 200809L /* for fileno and posix_fadvise */ - #include "serd_config.h" #include "string_utils.h" 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" |