http://bugs.winehq.org/show_bug.cgi?id=18787
Summary: Implement interlocked.c for Solaris/x86 using Sun C
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Solaris
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: baggett.patrick(a)gmail.com
When compiling Wine from source tarball on Solaris 10 5/09 with Sun Studio 12
cc I get the following message:
"You must implement the interlocked* functions for your compiler"
Sun C uses the same inline assembly language format as GCC, so simply changing
line 27 at top of libs/port/interlocked.c to read:
#if defined(__GNUC__) || defined(__SUNPRO_C)
causes it to successfully compile using the inline assembly. Given the trivial
nature of this, is there any way this can be merged?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=12553
Summary: Toolbars misplaced, hidden
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tarasov.igor(a)gmail.com
Created an attachment (id=12122)
--> (http://bugs.winehq.org/attachment.cgi?id=12122)
WINEDEBUG=+toolbar,+listview,+themingcombo wine 0.9.59 log
Here are two screenshots:
Wine being run with MS comctl32.dll, the same thing you see in Windows:
http://polosatus.ru/wine/toolbar_reference.png
And wine running with it's own version of comctl32:
http://polosatus.ru/wine/toolbar_bug.png
First of all, disappeared toolbar at the middle of screenshot.
Also, notice misplaced right toolbar. It is misplaced to left a bit. I suppose
both bugs are related.
Seems that developers have used some undocumented features, as log has this:
warn:toolbar:TOOLBAR_SetBitmapSize 5 buttons, undoc increase to bitmap size :
16-15 -> 20-20
and this:
warn:toolbar:TOOLBAR_SetBitmapSize 6 buttons, undoc increase to bitmap size :
20-20 -> 16-16
several times.
I've supposed that WINEDEBUG=+toolbar,+listview,+themingcombo should be enough
for initial log :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
https://bugs.winehq.org/show_bug.cgi?id=40412
Bug ID: 40412
Summary: When opening the game Stardew Valley, I get an error
message and it never opens
Product: Wine
Version: 1.9.4
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: goodman.jaime(a)gmail.com
Created attachment 54149
--> https://bugs.winehq.org/attachment.cgi?id=54149
backtrace file
I get the message "This program has encountered a serious problem and needs to
close"
Logs attached
--
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.
http://bugs.winehq.org/show_bug.cgi?id=31741
Bug #: 31741
Summary: python-2.7.3.amd64.msi fails to install
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tahoar(a)gmail.com
Classification: Unclassified
I tried installing Python 64-bit 2.7.3 on wine1.5-amd64. The installer loads
but will not progress after the introduction page. When clicking "continue",
the installer does nothing. Clicking "cancel" exits the installer.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
https://bugs.winehq.org/show_bug.cgi?id=44373
Bug ID: 44373
Summary: cmd's %0 path variables (e.g. %~dp0) don't match those
of Windows (w.r.t. case and quoting)
Product: Wine
Version: 3.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: ryan.prichard(a)gmail.com
Distribution: ---
I'm filing this issue at Fabian Maurer's suggestion, after filing
https://bugs.winehq.org/show_bug.cgi?id=44369.
When %0 starts with a quote character, Windows tends to evaluate the %0 path
variables (%~d0, %~p0, ...) strangely. I think the Wine behavior makes more
sense, but it could also make sense to match Windows bug-for-bug.
Test program (you might have to fix up the C:\bin for your machine):
C:\>mkdir Bin
C:\Bin\ShowArg0.Cmd:
@echo [%0] -------------------- [%~d0] [%~p0] [%~n0] [%~x0]
C:\Bin\RunScript.Cmd
@echo off
setlocal
set PATH=C:\bin;%PATH%
cd \
echo --- Wine and Windows roughly do the same thing.
call showarg0
call SHOWARG0
call showarg0.cmd
call SHOWARG0.CMD
call C:\bin\showarg0
call C:\bin\showarg0.cmd
call c:\bin\showarg0.CMD
call showarg0".cmd"
call showarg0."cmd"
call showarg0.c"md"
call s"ho"warg0.cmd
call s"ho"warg0
call "C:\bin\showarg0.cmd"
call "c:\bin\showarg0.CMD"
echo --- Wine and Windows diverge here.
call "showarg0"
call "SHOWARG0"
call "showarg0.cmd"
call "SHOWARG0.CMD"
call "showarg0".cmd
call "sho"warg0.cmd
call "sho"warg0
call "C":\bin\showarg0.cmd
call "C:"\bin\showarg0.cmd
call "C:\"bin\showarg0.cmd
call "c:\"bin\showarg0.CMD
call "C:\bin\showarg0"
(I edited the script output to align the columns.)
Windows behavior (tested on XP and Win10.0.16299.125):
C:\Bin>RunScript
--- Aside from case, Wine and Windows roughly do the same thing.
--- ... Using c:\bin in PATH
[showarg0] ----------------- [c:] [\Bin\] [ShowArg0] [.Cmd]
[SHOWARG0] ----------------- [c:] [\Bin\] [ShowArg0] [.Cmd]
--- ... Using C:\bin in PATH
[showarg0] ----------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[SHOWARG0] ----------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0.cmd] ------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[SHOWARG0.CMD] ------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[C:\bin\showarg0] ---------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[C:\bin\showarg0.cmd] ------ [C:] [\Bin\] [ShowArg0] [.Cmd]
[c:\bin\showarg0.CMD] ------ [c:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0".cmd"] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0."cmd"] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0.c"md"] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[s"ho"warg0.cmd] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[s"ho"warg0] --------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
["C:\bin\showarg0.cmd"] ---- [C:] [\Bin\] [ShowArg0] [.Cmd]
["c:\bin\showarg0.CMD"] ---- [c:] [\Bin\] [ShowArg0] [.Cmd]
--- Wine and Windows diverge here.
["showarg0"] --------------- [C:] [\] [showarg0] []
["SHOWARG0"] --------------- [C:] [\] [SHOWARG0] []
["showarg0.cmd"] ----------- [C:] [\] [showarg0] [.cmd]
["SHOWARG0.CMD"] ----------- [C:] [\] [SHOWARG0] [.CMD]
["showarg0".cmd] ----------- [C:] [\] [showarg0"] [.cmd]
["sho"warg0.cmd] ----------- [C:] [\] [sho"warg0] [.cmd]
["sho"warg0] --------------- [C:] [\] [sho"warg0] []
["C":\bin\showarg0.cmd] ---- [C:] [\C":\bin\] [showarg0] [.cmd]
["C:"\bin\showarg0.cmd] ---- [C:] [\"\bin\] [showarg0] [.cmd]
["C:\"bin\showarg0.cmd] ---- [C:] [\"bin\] [showarg0] [.cmd]
["c:\"bin\showarg0.CMD] ---- [c:] [\"bin\] [showarg0] [.CMD]
["C:\bin\showarg0"] -------- [C:] [\Bin\] [showarg0] []
Behavior on wine-3.0-rc6:
C:\Bin>RunScript
--- Aside from case, Wine and Windows roughly do the same thing.
--- ... Using c:\bin in PATH
[showarg0] ----------------- [c:] [\bin\] [showarg0] [.CMD]
[SHOWARG0] ----------------- [c:] [\bin\] [SHOWARG0] [.CMD]
--- ... Using C:\bin in PATH
[showarg0] ----------------- [C:] [\bin\] [showarg0] [.CMD]
[SHOWARG0] ----------------- [C:] [\bin\] [SHOWARG0] [.CMD]
[showarg0.cmd] ------------- [C:] [\bin\] [showarg0] [.cmd]
[SHOWARG0.CMD] ------------- [C:] [\bin\] [SHOWARG0] [.CMD]
[C:\bin\showarg0] ---------- [C:] [\bin\] [showarg0] [.CMD]
[C:\bin\showarg0.cmd] ------ [C:] [\bin\] [showarg0] [.cmd]
[c:\bin\showarg0.CMD] ------ [c:] [\bin\] [showarg0] [.CMD]
[showarg0".cmd"] ----------- [C:] [\bin\] [showarg0] [.cmd]
[showarg0."cmd"] ----------- [C:] [\bin\] [showarg0] [.cmd]
[showarg0.c"md"] ----------- [C:] [\bin\] [showarg0] [.cmd]
[s"ho"warg0.cmd] ----------- [C:] [\bin\] [showarg0] [.cmd]
[s"ho"warg0] --------------- [C:] [\bin\] [showarg0] [.CMD]
["C:\bin\showarg0.cmd"] ---- [C:] [\bin\] [showarg0] [.cmd]
["c:\bin\showarg0.CMD"] ---- [c:] [\bin\] [showarg0] [.CMD]
--- Wine and Windows diverge here.
["showarg0"] --------------- [C:] [\bin\] [showarg0] [.CMD]
["SHOWARG0"] --------------- [C:] [\bin\] [SHOWARG0] [.CMD]
["showarg0.cmd"] ----------- [C:] [\bin\] [showarg0] [.cmd]
["SHOWARG0.CMD"] ----------- [C:] [\bin\] [SHOWARG0] [.CMD]
["showarg0".cmd] ----------- [C:] [\bin\] [showarg0] [.cmd]
["sho"warg0.cmd] ----------- [C:] [\bin\] [showarg0] [.cmd]
["sho"warg0] --------------- [C:] [\bin\] [showarg0] [.CMD]
["C":\bin\showarg0.cmd] ---- [C:] [\bin\] [showarg0] [.cmd]
["C:"\bin\showarg0.cmd] ---- [C:] [\bin\] [showarg0] [.cmd]
["C:\"bin\showarg0.cmd] ---- [C:] [\bin\] [showarg0] [.cmd]
["c:\"bin\showarg0.CMD] ---- [c:] [\bin\] [showarg0] [.CMD]
["C:\bin\showarg0"] -------- [C:] [\bin\] [showarg0] [.CMD]
I see two differences:
- In most cases, when a path starts with a quote, Windows somehow doesn't
parse the path correctly and/or doesn't find the batch file in the PATH.
- As long as Windows *does* find the batch file, it uses the canonical case
for the path, filename, and extension. It doesn't canonicalize the drive;
instead it uses the drive from the PATH or %0. I also tested a SMB share on XP
and Win10 (\\nAs\nAs and \\NaS\NaS), and Windows didn't canonicalize the server
name or share name. (Maybe it never does.)
--
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.
http://bugs.winehq.org/show_bug.cgi?id=34893
Bug #: 34893
Summary: LaTale Launcher gives WSASocketW Failed to create a
socket of type SOCK_RAW, this requires special
permissions
Product: Wine
Version: 1.7.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iyeru42(a)gmail.com
Classification: Unclassified
tried using the regnum fix:
sudo setcap CAP_NET_RAW=ep /usr/bin/wine
sudo setcap CAP_NET_RAW=ep /usr/bin/wineserver
sudo setcap CAP_NET_RAW=ep LaTaleLauncher.exe
Also applied it to the ogplauncher, Still gave the error.
LaTale also requires GC_DONT_GC=1 before the wine command on the downloader for
the client, since it's pandomediabooster.
Get the client here: http://latale.ogplanet.com/en/download/client.og
Pastebin: http://pastebin.com/FTT71zb1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
https://bugs.winehq.org/show_bug.cgi?id=43436
Bug ID: 43436
Summary: Would it be possible to add Mageia 6 back to the
Install page?
Product: Wine-staging
Version: 2.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: arichter(a)lobo.net
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
I would sure like to see Mageia added back to the wine-staging Install page,
Mageia has been very good about keeping up with the stable releases but staging
is where all the fun is.
I have been successfully building RPMS for both i586 and x86_64 under Mageia 6
and would be glad to submit RPMS or SRPMS for both architectures.
Mageia 6 also now supports mock, which is what I have been using to build the
i586 RPMs under x86_64.
I apologize for submitting this as a bug since it's not a bug but I would
either like to see Mageia back under the Install page or contribute built RPMS
and SRPMS to help make it happen.
I'm a bit new to this RPM building thing but the stuff I've made has worked out
for me, and I've tried to be more active in the winedb.
Thank you for your time and efforts, I only want to help on the Mageia side of
things.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=42430
Bug ID: 42430
Summary: Page fault on read access to 0x78c000bd in 32-bit code
when loading .Net application
Product: Wine
Version: 2.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: franknleslie(a)gmail.com
Distribution: ---
Created attachment 57261
--> https://bugs.winehq.org/attachment.cgi?id=57261
GarminExpressInstaller backtrace 1
When trying to execute GarminExpressInstaller.exe I run into a page fault
exception as the installer window is opening.
Environment:
openSUSE Tumbleweed x86_64
kernel 4.9.8-1-default
wine 2.1
Initially when the installer was launching I was receiving the following error:
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e414,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e528,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x6c1e528,0x00000000), stub!
fixme:d3d:wined3d_guess_card No card selector available for card vendor 0000
(using GL_RENDERER "Gallium 0.4 on llvmpipe (LLVM 3.9, 128 bits)").
I resolved that by installing Mesa-dri-nouveau-32bit (since I have a NVidia
video card).
After restarting the application I am now receiving the following unhandled
exception:
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e414,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e528,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x6c1e528,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e414,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e528,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x6c1e528,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e414,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x6c1e528,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x6c1e528,0x00000000), stub!
fixme:advapi:RegisterEventSourceW ((null),L".NET Runtime"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000402,(nil),0x0001,0x00000000,0x6c1c920,(nil)):
stub
err:eventlog:ReportEventW L"Application: GarminExpressInstaller.exe\nFramework
Version: v4.0.30319\nDescription: The process was terminated due to an
unhandled exception.\nException Info: exception code c0000005, exception
address 7CB686E3\n"
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
wine: Unhandled page fault on read access to 0x78c000bd at address 0x7cb686e3
(thread 0044), starting debugger...
fixme:thread:NtQueryInformationThread info class 16 not supported yet
fixme:service:QueryServiceConfig2W Level 6 not implemented
I have attached the backtrace to this bug.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=15864
Summary: window size has reversed width and height
Product: Wine
Version: 1.1.7
Platform: Other
URL: http://jeffz.name/dvt-fc2.exe
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Created an attachment (id=17001)
--> (http://bugs.winehq.org/attachment.cgi?id=17001)
Windows-vs-Wine
This small program seems to have its width and height mixed up under Wine. The
attached screenshot shows the program running under windows (top) and under
Wine (below)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
https://bugs.winehq.org/show_bug.cgi?id=41635
Bug ID: 41635
Summary: The Banner Saga 2 (adobe air) - poor performance on
plain Wine, flickering on Wine-staging
Product: Wine
Version: 1.9.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: donanykey(a)gmail.com
Distribution: ---
Although from the first glance the Banner Saga 2 (based on the Adobe Air) is
fully functional with plain Wine, the performance is very poor and the
framerate is bad (literally `slide show`).
I wouldn't have fired this bug, if not the following reasons:
1. The performance on wine-staging is much better, almost close to native, but
there is another problem - picture flickering
2. The first game in series has native linux support, but with known problems
(during battles after some time of playing the framerate drops dramatically and
hardly recovers). Due to the small fraction of linux gamers and, I believe, due
to the porting efforts and problems the developer announced that they have no
plans to support linux in the 2 & 3 games in the foreseeable future. I think it
would be a good opportunity for CodeWeavers to reach those guys and propose
porting services (they are quite opened guys, their CTO shares details over
porting vendor selection, problems and etc - easily googled). One of the major
problems - Adobe stopped support of Air on Linux
Nevertheless, I would be happy to provide any additional info, full log is not
useful I suppose, as soon as game runs without errors and can't say what
patch(s) in wine-staging makes it run faster
--
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.