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:
authorJan Beich <jbeich@FreeBSD.org>2022-10-30 11:32:55 +0300
committerJan Beich <jbeich@FreeBSD.org>2022-10-30 11:48:59 +0300
commit21abfb98667b40b9537ea2310310d7254fcdfdad (patch)
tree37cd7f2962ea3f9c74e3e82850c1f1bae36ae8bf
parent7409a1894c2e9d5291760703da1ce6c95dd7b815 (diff)
build: drop -D_DARWIN_C_SOURCE on macOS/iOS after 6b611d36acab
Already implied when -D_POSIX_C_SOURCE is not passed.
-rw-r--r--meson.build3
1 files changed, 0 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index bbe1bc8..52d8ef0 100644
--- a/meson.build
+++ b/meson.build
@@ -92,9 +92,6 @@ optional_link_arguments = []
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')
endif
if host_machine.system() == 'windows'