[gitg] build: Change project's default values



commit 98a1498a8e93e055f0731b458a799d41930c270d
Author: Iñigo Martínez <inigomartinez gmail com>
Date:   Wed Nov 15 11:07:49 2017 +0100

    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 files changed, 2 insertions(+), 6 deletions(-)
---
diff --git a/meson.build b/meson.build
index e7e9506..3369fc3 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'
 )
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]