annotate src/dbus-1-fixes.patch @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +0200
parents 4c5a70572b2b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5000
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
1 This file is part of MXE. See LICENSE.md for licensing information.
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
2
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
3 Contains ad hoc patches for cross building.
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
4
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
5 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
6 From: darealshinji <djcj@gmx.de>
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
7 Date: Mon, 3 Jul 2017 01:55:45 +0200
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
8 Subject: [PATCH 1/1] Avoid multiple definitions of DllMain in static builds
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
9
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
10
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
11 diff --git a/dbus/dbus-sysdeps-thread-win.c b/dbus/dbus-sysdeps-thread-win.c
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
12 index 1111111..2222222 100644
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
13 --- a/dbus/dbus-sysdeps-thread-win.c
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
14 +++ b/dbus/dbus-sysdeps-thread-win.c
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
15 @@ -69,6 +69,8 @@ _dbus_win_get_dll_hmodule (void)
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
16 #define hinst_t HINSTANCE
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
17 #endif
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
18
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
19 +#ifndef DBUS_STATIC_BUILD
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
20 +
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
21 BOOL WINAPI DllMain (hinst_t, DWORD, LPVOID);
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
22
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
23 /* We need this to free the TLS events on thread exit */
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
24 @@ -107,6 +109,8 @@ DllMain (hinst_t hinstDLL,
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
25 return TRUE;
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
26 }
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
27
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
28 +#endif /* !DBUS_STATIC_BUILD */
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
29 +
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
30 DBusCMutex *
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
31 _dbus_platform_cmutex_new (void)
4c5a70572b2b dbus: update to v1.13.8
John Donoghue
parents:
diff changeset
32 {