summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2020-10-23 12:10:52 +1100
committerMatthew Waters <matthew@centricular.com>2020-10-27 16:36:28 +1100
commit20752d5b3ab4f5d664b85b8f6df191a49a5d347b (patch)
tree6258448702f69231561a07adecb167228e8610fc
parent9b9b147430cc28128fae7c31b1a6cdf19f78f86e (diff)
config/darwin: unconditionally add -Wno-error=implicit-function-declaration
Some recipes (libvisual) in 1.18 aren't ready for XCode 12's new default of erroring out. Wholesale disable that warning where possible. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/652>
-rw-r--r--config/darwin.config1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/darwin.config b/config/darwin.config
index a4dcf4dc..cb522585 100644
--- a/config/darwin.config
+++ b/config/darwin.config
@@ -57,6 +57,7 @@ elif target_arch == Architecture.X86:
env['VERSIONER_PYTHON_PREFER_32_BIT'] = 'yes'
arch_cflags += ' -Wno-error=format-nonliteral '
+arch_cflags += ' -Wno-error=implicit-function-declaration '
incl_dir = os.path.join(prefix, 'include')