- 01 Nov, 2022 1 commit
-
-
Alexandre Julliard authored
-
- 31 Oct, 2022 1 commit
-
-
Alexandre Julliard authored
-
- 14 Oct, 2022 1 commit
-
-
Alexandre Julliard authored
This will be needed to support building multiple architectures from the same tree.
-
- 10 Oct, 2022 1 commit
-
-
Erich E. Hoover authored
Co-authored-by: Joel Holdsworth <joel@airwebreathe.org.uk> Signed-off-by: Joel Holdsworth <joel@airwebreathe.org.uk>
-
- 20 Sep, 2022 3 commits
-
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
- 19 Sep, 2022 1 commit
-
-
Shaun Ren authored
Some programs, such as Final Fantasy IV (3D remake), expect strncmp to return exactly +/-1 when the strings are not equal. Signed-off-by: Shaun Ren <sren@codeweavers.com>
-
- 14 Sep, 2022 1 commit
-
-
Julian Klemann authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53328
-
- 12 Sep, 2022 1 commit
-
-
Alexandre Julliard authored
-
- 17 Aug, 2022 1 commit
-
-
Piotr Caban authored
-
- 15 Aug, 2022 3 commits
-
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Martin Storsjö authored
Clang 16 is defaulting -Wincompatible-function-pointer-types to an error instead of a warning. This isn't an issue for most of Wine, but the error shows up in a lot of cases if doing a non-PE build for ARM (32 bit, 64 has no such issues), in particular around the integration of libxml2 and faudio. The root cause of the issue is that some functions are specified with e.g. __attribute__((pcs("aapcs-vfp"))) - which is equal to the default calling convention when compiling with -mfloat-abi=hard - but Clang's warning doesn't treat such function pointers as equal. (This could maybe be considered a bug or limitation in Clang though.) There's also some smaller amount of cases where our attributes actually do conflict, where we mix __attribute__((pcs("aapcs"))), i.e. arm softfloat calling convention, with the default calling convention (which is set to hardfloat), but they drown in the noise from the other ones. Therefore, on arm, try to downgrade this diagnostic back to a warning, not an error - while keeping the warnings visible. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 22 Jul, 2022 1 commit
-
-
Zebediah Figura authored
-
- 07 Jul, 2022 1 commit
-
-
Zhiyi Zhang authored
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
- 04 Jul, 2022 1 commit
-
-
Paul Gofman authored
-
- 15 Jun, 2022 1 commit
-
-
Connor McAdams authored
Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
-
- 18 May, 2022 1 commit
-
-
Rémi Bernon authored
It was initially meant for tests, which are all now in dlls/mf as well, and for the WMA decoder. The class is supposed to live in this DLL but because of the winegstreamer implementation, it cannot in Wine. Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 13 May, 2022 3 commits
-
-
Chip Davis authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Chip Davis authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Chip Davis authored
NetBSD no longer has statistics structures. Instead, it stores them as arrays of integer counters. It's backwards compatible with the old statistics structures, but the struct definitions are missing. This has likely been broken on NetBSD for quite some time as a result. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 12 May, 2022 1 commit
-
-
Zebediah Figura authored
This also fixes the build with external libxml2 but bundled libxslt. Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 06 May, 2022 1 commit
-
-
Zhiyi Zhang authored
Required for Iragon: Prologue. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 03 May, 2022 1 commit
-
-
Torge Matthies authored
Signed-off-by: Torge Matthies <tmatthies@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 25 Apr, 2022 1 commit
-
-
Zhiyi Zhang authored
Required for Iragon: Prologue. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 22 Apr, 2022 1 commit
-
-
Zhiyi Zhang authored
Required for Iragon: Prologue. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 05 Apr, 2022 1 commit
-
-
Paul Gofman authored
Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 25 Mar, 2022 1 commit
-
-
Alexandre Julliard authored
Similar to what AC_PROC_CC does for the host compiler. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52723Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 08 Mar, 2022 3 commits
-
-
Dmitry Timoshkov authored
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Zebediah Figura authored
AC_CHECK_LIB sets the variable to "no", not an empty string. Hence compilation would fail if headers were present but libraries were missing. Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Brendan Shanks authored
Fixes launching 32-bit EXEs from a WOW64 build dir. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52618Signed-off-by: Brendan Shanks <bshanks@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 07 Mar, 2022 1 commit
-
-
Martin Storsjö authored
llvm-mingw isn't strictly required - plain clang, llvm-dlltool and lld also suffice. Those tools are commonly available in distribution packages. Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 04 Mar, 2022 1 commit
-
-
Zebediah Figura authored
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 03 Mar, 2022 2 commits
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 02 Mar, 2022 1 commit
-
-
Alexandre Julliard authored
There's no -mabi=ms option we could use on ARM64. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 01 Mar, 2022 1 commit
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 23 Feb, 2022 1 commit
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 18 Feb, 2022 1 commit
-
-
Alexandre Julliard authored
Apiset data generated from the existing api-ms-* modules. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-