summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-11-10 17:23:12 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2017-11-13 10:57:28 +0100
commit7e5aed29c213d08543b99cc7829d246396c52b38 (patch)
treefa104dcb933cde9ee73d60f40f5d8ffb9144d025
parent5d775a9f1a7601f67f3534f86bde6fe0368a9118 (diff)
downloadnetwork-manager-applet-7e5aed29c213d08543b99cc7829d246396c52b38.tar.gz
build(meson): Remove default options
network-manager-applet uses 1 as the project's default warning level and also sets b_lundef to force the linker to show undefined symbols as errors. However, meson already sets thos options by default. This patch removes those options from project's default options. https://bugzilla.gnome.org/show_bug.cgi?id=790178
-rw-r--r--meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 8c6e6f98..780c3cd3 100644
--- a/meson.build
+++ b/meson.build
@@ -3,10 +3,8 @@ project(
version: '1.8.7',
license: 'GPL2+',
default_options: [
- 'b_lundef=true',
'buildtype=debugoptimized',
- 'c_std=gnu99',
- 'warning_level=1'
+ 'c_std=gnu99'
],
meson_version: '>= 0.42.0'
)