From 98a1498a8e93e055f0731b458a799d41930c270d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Wed, 15 Nov 2017 11:07:49 +0100 Subject: [PATCH] build: Change project's default values The project license has a different license from the one in the source code files: GPL2 in the project's description, and GPL2 or later in the source code files. The default options for warning level and the no undefined flag when linking have also the default options already used by meson. This patch fixes the project license and also removes the default options which are already used by meson. https://bugzilla.gnome.org/show_bug.cgi?id=788796 --- meson.build | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index e7e95065..3369fc36 100644 --- a/meson.build +++ b/meson.build @@ -1,12 +1,8 @@ project( 'gitg', ['c', 'vala'], version: '3.26.0', - license: 'GPL2', - default_options: [ - 'b_lundef=true', - 'buildtype=debugoptimized', - 'warning_level=1' - ], + license: 'GPL2+', + default_options: 'buildtype=debugoptimized', meson_version: '>= 0.43.0' )