g-i: silence 'nested extern' compiler warnings when building scanner binary
authorTim-Philipp Müller <tim@centricular.com>
Sat, 23 Mar 2019 17:53:54 +0000 (17:53 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 23 Mar 2019 17:53:54 +0000 (17:53 +0000)
We need a nested extern in our init section for the scanner binary
so we can call gst_init to make sure GStreamer types are initialised
(they are not all lazy init via get_type functions, but some are in
exported variables). There doesn't seem to be any other mechanism to
achieve this, so just remove that warning, it's not important at all.

meson.build

index 99826f1..ae0e889 100644 (file)
@@ -397,7 +397,6 @@ warning_flags = [
   '-Waddress',
   '-Waggregate-return',
   '-Wno-multichar',
-  '-Wnested-externs',
   '-Wdeclaration-after-statement',
   '-Wvla',
   '-Wpointer-arith',