Alexandre Julliard pushed to branch master at wine / wine
Commits:
be5f6007 by Alexandre Julliard at 2025-02-13T13:21:31+01:00
ntdll: Add a helper function to retrieve the .so directory.
- - - - -
7ce83f15 by Alexandre Julliard at 2025-02-13T13:21:58+01:00
ntdll: Add a helper function to get the alternate 32/64-bit machine.
- - - - -
77b3c4c0 by Alexandre Julliard at 2025-02-13T13:22:31+01:00
ntdll: Set the WINELOADER variable on the PE side, using a Windows path.
- - - - -
8c3f2056 by Alexandre Julliard at 2025-02-13T20:53:15+01:00
loader: Install the Wine loader in the Unix lib directory.
And get rid of the "wine64" naming, the loader is always named "wine"
on all platforms.
- - - - -
6d28db86 by Alexandre Julliard at 2025-02-13T20:53:15+01:00
tools: Add a simpler Wine launcher in the bin directory.
- - - - -
22a90656 by Alexandre Julliard at 2025-02-13T20:53:15+01:00
tools: Move the loader man pages to the new Wine loader directory.
And remove mention of the WINELOADER variable.
- - - - -
4f7f1c6d by Alexandre Julliard at 2025-02-13T20:53:15+01:00
dbghelp: Always use the WINELOADER variable for the loader name.
- - - - -
18 changed files:
- configure
- configure.ac
- dlls/dbghelp/dbghelp_private.h
- dlls/dbghelp/elf_module.c
- dlls/dbghelp/macho_module.c
- dlls/dbghelp/module.c
- dlls/ntdll/unix/env.c
- dlls/ntdll/unix/loader.c
- dlls/ntdll/unix/unix_private.h
- loader/Makefile.in
- loader/main.c
- tools/makedep.c
- + tools/wine/Makefile.in
- + tools/wine/wine.c
- loader/wine.de.UTF-8.man.in → tools/wine/wine.de.UTF-8.man.in
- loader/wine.fr.UTF-8.man.in → tools/wine/wine.fr.UTF-8.man.in
- loader/wine.man.in → tools/wine/wine.man.in
- loader/wine.pl.UTF-8.man.in → tools/wine/wine.pl.UTF-8.man.in
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/78a9d5d12edf3367ef787cd22f421…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/78a9d5d12edf3367ef787cd22f421…
You're receiving this email because of your account on gitlab.winehq.org.
Alistair Leslie-Hughes pushed to branch master at wine / wine-staging
Commits:
735225db by Alistair Leslie-Hughes at 2025-02-13T21:20:46+11:00
Rebase against 17915f730267b2b50550636fb6928a6ace247ccd.
- - - - -
3 changed files:
- patches/ntdll-Hide_Wine_Exports/0001-ntdll-Add-support-for-hiding-wine-version-informatio.patch
- patches/server-Realtime_Priority/0001-wineserver-Draft-to-implement-priority-levels-throug.patch
- staging/upstream-commit
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/commit/735225dbaa71dc0cbff67c…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/commit/735225dbaa71dc0cbff67c…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
c055c838 by Jacek Caban at 2025-02-12T16:02:21+01:00
msvcp: Avoid explicitly aligning structs passed by value.
Based on Piotr's findings.
On MSVC i386 targets, structs requiring alignment greater than 4 are never passed by value.
Clang follows the same behavior in MSVC mode (see [1] for details and [2] for a follow-up
that applies this logic when fields, not necessarily the entire struct, are aligned).
A number of ios functions take fpos_mbstatet as an argument and expect it to be passed by value.
[1] https://reviews.llvm.org/D72114
[2] https://github.com/llvm/llvm-project/issues/63257
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57817
- - - - -
17915f73 by Jacek Caban at 2025-02-12T16:02:21+01:00
msvcp60: Avoid explicitly aligning structs passed by value.
- - - - -
5 changed files:
- dlls/msvcp60/ios.c
- dlls/msvcp60/tests/ios.c
- dlls/msvcp90/ios.c
- dlls/msvcp90/msvcp90.h
- dlls/msvcp90/tests/ios.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/4c6fae3d5c3a6ce801cbf20996b62…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/4c6fae3d5c3a6ce801cbf20996b62…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
eea75c83 by Nikolay Sivov at 2025-02-12T11:12:27+01:00
windowscodecs/metadata: Recursively create nested writers in CreateMetadataWriterFromReader().
- - - - -
a0ccd5ec by Nikolay Sivov at 2025-02-12T11:12:29+01:00
windowscodecs/tests: Use generic block writer for testing.
- - - - -
2756523b by Nikolay Sivov at 2025-02-12T11:12:29+01:00
windowscodecs/tests: Add some tests for querying nested readers in App1 format.
- - - - -
4353b653 by Nikolay Sivov at 2025-02-12T11:12:29+01:00
windowscodecs/tests: Add some tests for the query writer used on App1 data.
- - - - -
3ee68f1a by Nikolay Sivov at 2025-02-12T11:12:29+01:00
windowscodecs/metadata: Handle nested metadata handlers lookup by CLSID.
- - - - -
5eb55f9c by Nikolay Sivov at 2025-02-12T11:12:30+01:00
windowscodecs/tests: Add a top level block enumerator for the test block writer.
- - - - -
06d315b3 by Nikolay Sivov at 2025-02-12T11:12:30+01:00
windowscodecs/tests: Add some tests for handler objects enumerator.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
36534a23 by Nikolay Sivov at 2025-02-12T11:12:30+01:00
windowscodecs: Add missing traces to the IWICEnumMetadataItem implementation.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
3 changed files:
- dlls/windowscodecs/imgfactory.c
- dlls/windowscodecs/metadatahandler.c
- dlls/windowscodecs/tests/metadata.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f15864dff0d485dea83f70ec48d21…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f15864dff0d485dea83f70ec48d21…
You're receiving this email because of your account on gitlab.winehq.org.