[glib-openssl] meson: bump version and fix flags for windows



commit 1105341841a55a55835632f62daab630d2284758
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Sat Jun 17 13:00:00 2017 +0200

    meson: bump version and fix flags for windows

 meson.build |   37 ++++++++++++++++++-------------------
 1 files changed, 18 insertions(+), 19 deletions(-)
---
diff --git a/meson.build b/meson.build
index 340b270..72bf558 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
 project('glib-openssl', 'c',
-  version: '2.50.2',
+  version: '2.50.3',
   meson_version: '>= 0.38.0'
 )
 
@@ -22,24 +22,23 @@ if cc.get_id() == 'msvc'
   # glib's msvc_recommended_pragmas.h--please see that file for
   # the meaning of the warning codes used here
   test_cflags = [
-    '-we4002',
-    '-we4003',
-    '-w14010',
-    '-we4013',
-    '-w14016',
-    '-we4020',
-    '-we4021',
-    '-we4027',
-    '-we4029',
-    '-we4033',
-    '-we4035',
-    '-we4045',
-    '-we4047',
-    '-we4049',
-    '-we4053',
-    '-we4071',
-    '-we4150',
-    '-we4819'
+    '-we4002', # too many actual parameters for macro
+    '-we4003', # not enough actual parameters for macro
+    '-w14010', # single-line comment contains line-continuation character
+    '-we4013', # 'function' undefined; assuming extern returning int
+    '-w14016', # no function return type; using int as default
+    '-we4020', # too many actual parameters
+    '-we4021', # too few actual parameters
+    '-we4027', # function declared without formal parameter list
+    '-we4029', # declared formal parameter list different from definition
+    '-we4033', # 'function' must return a value
+    '-we4035', # 'function' : no return value
+    '-we4045', # array bounds overflow
+    '-we4047', # different levels of indirection
+    '-we4049', # terminating line number emission
+    '-we4053', # an expression of type void was used as an operand
+    '-we4071', # no function prototype given
+    '-we4819', # the file contains a character that cannot be represented in the current code page
   ]
 else
   test_cflags = [


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