https://bugs.winehq.org/show_bug.cgi?id=46229
Bug ID: 46229
Summary: server/ptrace: NetBSD debug register storage
Product: Wine
Version: 3.21
Hardware: x86-64
OS: NetBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: triaxx(a)NetBSD.org
Created attachment 62921
--> https://bugs.winehq.org/…
[View More]attachment.cgi?id=62921
NetBSD specific debug register storage
The build failed because the storage of debug registers uses an array on
NetBSD.
The attached patch fix the build failure.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=45782
Bug ID: 45782
Summary: Unhandled exception: unimplemented function
api-ms-win-crt-math-l1-1-0.dll._Cbuild called in
64-bit code
Product: Wine
Version: 3.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
…
[View More] Reporter: htl10(a)users.sourceforge.net
Distribution: ---
quite straight forward:
1. Download 64-bit version of mono:
https://download.mono-project.com/archive/5.14.0/windows-installer/mono-5.1…
2. install it in a new prefix:
WINEPREFIX=/someplace wine64 msiexec /i mono-5.14.0.177-x64-0.msi
3. start command line console:
WINEPREFIX=/someplace wine64 cmd
4. run this command in the console:
"c:/Program Files/Mono/bin/mkbundle.bat" --list-targets
Unhandled exception: unimplemented function
api-ms-win-crt-math-l1-1-0.dll._Cbuild called in 64-bit code
...
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=40433
Bug ID: 40433
Summary: Fifa 11 EU demo fails to install when run from custom
DVD
Product: Wine
Version: 1.7.29
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
"Fifa 11 EU Demo" …
[View More]fails to install from DVD created by myself under
wine-1.9.7-118-gaaddf13. This demo is distributed as zip file. I took to
content of the ZIP and created the ISO by MagicISO. As a volume label i chose
"fifa2011_eu_demo".
When i copy content of the DVD back to some folder on HDD, then the
installation succeeded.
This could be interpreted as invalid bug report, but this DVD, created by me,
works under Win8.1.
Installer pops-up at the end "Please insert the disc: FIFA 11 Demo".
Console: "err:msi:msi_view_get_row Error fetching data for 1"
This is a regression caused by wine-1.7.28-130-g5cb10c9:
commit 5cb10c96b26d07b7d0aabe3b8e337c7ce144b8af
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Wed Oct 15 15:30:23 2014 +0200
msi: Don't skip the media check for the first volume.
Some installers require the first volume to be reinserted.
This commit fixed bug 20444. This commit was also indicated as a regression in
bug 38401. There he did reverse, i.e. real DVD copied and created ISO which
finally worked. IMHO he interpreted it as invalid by mistake.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=46157
Bug ID: 46157
Summary: Doxie 2.10.3: Unimplemented function
msvcr120.dll._vscprintf_l called at address 0x7b43e0dc
(thread 0009),
Product: Wine
Version: 3.20
Hardware: x86
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(…
[View More]a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Regression SHA1: http://cdn.getdoxie.com/resources/files/DoxieSetup_2.1
0.3.exe
Distribution: Ubuntu
As the title says
sha1sum ~/Downloads/DoxieSetup_2.10.3.exe
262f241187c18a07a26532bbe11e7449b685957f
/home/louis/Downloads/DoxieSetup_2.10.3.exe
wine-3.20 (Staging)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=44409
Bug ID: 44409
Summary: png with indexed colors and alpha miss the alpha
channel on loading
Product: Wine
Version: 3.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: nikolaysemenkov(a)gmail.com
Distribution:…
[View More] ---
Created attachment 60332
--> https://bugs.winehq.org/attachment.cgi?id=60332
1 bit png with alpha
The 1bit png with alpha is attached.
Wine loads it as PixelFormat1bppIndexed, which means no alpha preserved
Windows loads it as PixelFormat32bppARGB which means windows does conversion
because pixelformat is not match to PixelFormat1bppIndexed(because otherwise it
lost alpha).
The same happens for 8 bit png with alpha.
Could you please add supporting loading alpha channel for 1 and 8 bit pngs in
the same way as windows does, ie convert to PixelFormat32bppARGB.
Thanks.
The func to load png:
HBITMAP loadBitmap(const wchar_t* path)
{
HBITMAP tBmp = NULL;
ULONG_PTR token = 0;
Gdiplus::GdiplusStartupInput input = NULL;
Gdiplus::GdiplusStartup(&token, &input, NULL);
if (token != 0)
{
Gdiplus::Bitmap* bmp = new Gdiplus::Bitmap(path);
bmp->GetHBITMAP(Gdiplus::Color::Transparent, &tBmp);
delete bmp;
Gdiplus::GdiplusShutdown(token);
}
return tBmp;
}
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=46328
Bug ID: 46328
Summary: Installer for Tanglet 1.5.3 crashes at target
directory selection
Product: Wine
Version: 4.0-rc2
Hardware: x86-64
URL: https://www.opensource-dvd.de/spiele/tanglet.htm
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)…
[View More]winehq.org
Reporter: tobbi.bugs(a)googlemail.com
Created attachment 63068
--> https://bugs.winehq.org/attachment.cgi?id=63068
Wine error report information
When trying to install Tanglet 1.5.3, I get until the directory selection. Then
the installer crashes.
$ wine --version
wine-4.0-rc2
$ openssl sha256 Tanglet_1.5.3.exe
SHA256(Tanglet_1.5.3.exe)=
ea593af1598e5b6542fe64e81ea1890b64e18daa55049e015897245b541bdb96
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=38066
Bug ID: 38066
Summary: Memento Mori (Numen: Contest of Heroes): mouse buttons
don't work (needs native dinput8)
Product: Wine
Version: 1.7.36
Hardware: x86
URL: http://www.4players.de/4players.php/download_info/Down
loads/Download/50673/Memento_Mori/Deutsche_Demo.html
OS: Linux
Status: NEW
Keywords: …
[View More]download
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 50710
--> https://bugs.winehq.org/attachment.cgi?id=50710
terminal output
Keyboard is working in the game because I can skip the intro videos by pressing
<Esc> and I can move the mouse pointer when the menu appears. Mouse buttons
however are not registered thus I can't select a menu option.
'winetricks dinput8' is a workaround.
I know of another game from the same publisher that also needs native dinput8
otherwise mouse buttons don't work: Numen: Contest of Heroes.
To test the demo you need to install native d3dx9_36 and Windows Media Player 9
or 10.
wine-1.7.36-28-ga679cae
Fedora 21
XOrg 1.16.3
XFCE 4.10
Memento_Mori_DEMO_setup_GERMAN.exe
md5sum: 8eda283807d43ad2a058c397efde7725
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=45569
Bug ID: 45569
Summary: League of Legends 8.12+ needs
NtQueryInformationProcess(ProcessCookie) stub
Product: Wine
Version: 3.13
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
…
[View More]Diagnosed by Andrew Wesie; partially split off from bug 45327.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]
https://bugs.winehq.org/show_bug.cgi?id=46084
Bug ID: 46084
Summary: Skype 8.33.0.50 installer crashes due to unimplemented
msvcp140.dll.?_Winerror_map@std@@YAHH@Z
Product: Wine
Version: 3.19
Hardware: x86
URL: https://www.skype.com/en/get-skype/download-skype-for-
desktop/
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: …
[View More]normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: dark.shadow4(a)web.de, focht(a)gmx.net, gaturk2(a)free.fr
Distribution: ---
Noticed while looking at bug 44850
wine: Call from 0x7b43defc to unimplemented function
msvcp140.dll.?_Winerror_map@std@@YAHH@Z, aborting
austin@laptop:/tmp$ du -h Skype-8.33.0.50.exe
60M Skype-8.33.0.50.exe
austin@laptop:/tmp$ sha256sum Skype-8.33.0.50.exe
aac2ec58243794dd027851fb64b94ce03ebe759fb823dc45975bb1592cbe73e8
Skype-8.33.0.50.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
[View Less]