annotate src/atk-1-DllMain.patch @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents 1c7c6c090223
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2395
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
1 diff -uNr atk-2.2.0-orig/atk/atkobject.c atk-2.2.0/atk/atkobject.c
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
2 --- atk-2.2.0-orig/atk/atkobject.c 2011-09-19 19:06:54.000000000 +0200
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
3 +++ atk-2.2.0/atk/atkobject.c 2012-04-14 20:26:12.763814596 +0200
3164
1c7c6c090223 [MSVC] enable ATK compilation (and bump version to 2.8.0)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 2395
diff changeset
4 @@ -369,7 +369,11 @@
2395
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
5 static HMODULE atk_dll;
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
6
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
7 BOOL WINAPI
3164
1c7c6c090223 [MSVC] enable ATK compilation (and bump version to 2.8.0)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 2395
diff changeset
8 +#ifdef DLL_EXPORT
1c7c6c090223 [MSVC] enable ATK compilation (and bump version to 2.8.0)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 2395
diff changeset
9 DllMain (HINSTANCE hinstDLL,
1c7c6c090223 [MSVC] enable ATK compilation (and bump version to 2.8.0)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 2395
diff changeset
10 +#else
2395
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
11 +atk_DllMain (HINSTANCE hinstDLL,
3164
1c7c6c090223 [MSVC] enable ATK compilation (and bump version to 2.8.0)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 2395
diff changeset
12 +#endif
2395
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
13 DWORD fdwReason,
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
14 LPVOID lpvReserved)
0bec20cb78f6 atk: rename DllMain to atk_DllMain
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
15 {