annotate src/glib-2-fixes.patch @ 6234:97c5f8da5036 release

* src/librsb.mk: update to 1.2.0.11
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 27 May 2022 12:24:32 +0200
parents 552fca54749c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5593
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 See: https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1428
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 --- a/glib/gtypes.h 2016-10-22 07:21:52.000000000 +0200
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 +++ b/glib/gtypes.h 2020-05-17 11:13:49.369639688 +0200
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 @@ -522,7 +522,7 @@
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 # else /* !GLIB_STATIC_COMPILATION */
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 # ifdef GLIB_COMPILATION
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 # ifdef DLL_EXPORT
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 -# define GLIB_VAR __declspec(dllexport)
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 +# define GLIB_VAR extern __declspec(dllexport)
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 # else /* !DLL_EXPORT */
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 # define GLIB_VAR extern
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 # endif /* !DLL_EXPORT */
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 --- a/gobject/gparamspecs.h 2016-10-22 07:22:21.000000000 +0200
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 +++ b/gobject/gparamspecs.h 2020-05-17 11:16:37.803281391 +0200
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 @@ -1144,7 +1144,7 @@
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 # else /* !GOBJECT_STATIC_COMPILATION */
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 # ifdef GOBJECT_COMPILATION
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 # ifdef DLL_EXPORT
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 -# define GOBJECT_VAR __declspec(dllexport)
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 +# define GOBJECT_VAR extern __declspec(dllexport)
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22 # else /* !DLL_EXPORT */
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23 # define GOBJECT_VAR extern
552fca54749c add glib-2-fixes.patch
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 # endif /* !DLL_EXPORT */