Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build5
1 files changed, 1 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index 99bfea5..bbe1bc8 100644
--- a/meson.build
+++ b/meson.build
@@ -89,15 +89,12 @@ test_args = []
optional_arguments = []
optional_link_arguments = []
-if host_machine.system() == 'linux'
+if host_machine.system() in ['linux', 'gnu']
test_args += '-D_GNU_SOURCE'
add_project_arguments('-D_GNU_SOURCE', language: 'c')
elif host_machine.system() in ['darwin', 'ios', 'tvos']
test_args += '-D_DARWIN_C_SOURCE'
add_project_arguments('-D_DARWIN_C_SOURCE', language: 'c')
-else
- test_args += '-D_POSIX_C_SOURCE=200112L'
- add_project_arguments('-D_POSIX_C_SOURCE=200112L', language: 'c')
endif
if host_machine.system() == 'windows'