http://bugs.winehq.org/show_bug.cgi?id=10759
Summary: Wine does not ship with a sans serif font
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Bug 9982 says it's blocked by Wine not shipping with a sans-serif font.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10618
Summary: dll/kernel32/process.c build_argv returns incorrect argv
array for a given command line string
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felix(a)compsoc.nuigalway.ie
Created an attachment (id=9421)
--> (http://bugs.winehq.org/attachment.cgi?id=9421)
Additional traces to allow bug to be seen
When building the argv array to send to a new process started by another within
wine, the function build_argv in dlls/kernel32/process.c fails to return an
array argv correctly.
In the case of msiexec being the target program, this has necessitated a custom
command line parse that reconstructs the the correct argv.
Application that highlights this behaviour is the Excel Viewer installer.
The problem was discovered when examining bug 9628 to see why a patch to use
the standard command line parser call was reverted in favour of a custom parser
internal to msiexec.
You will need to apply the attached patch to be able to see the broken
behaviour, it basically adds some additional traces and also increases the
debug buffer so that the full command line can be seen when using the debug
functions to print.
Steps to reproduce:
1. Apply patch, rebuild wine, and install as necessary. adds TRACES that allow
you to see the contents of argv
2. Download the Microsoft Excel Viewer 2003 installer from Microsoft
3. Run the installer with the following environment variable set on the command
line "WINEDEBUG=+msiexec,+process"
4. Check for the lines outputting
"trace:process:build_argv cmdlineW = ..." command line being sent to new
process
"trace:process:build_argv resulting argv[]" + a number of lines following
outputting the contents of the constructed argv array.
"trace:msiexec:main argv[0]..." and a number of lines following.
5. Exit installation dialogs by cancelling
6. Run installation of msi directly by using the command line printed out by
the first trace described in step 4.
7. You should see the difference between what is outputted by the trace
displaying "trace:msiexec:main argv[0]..." in step 4 and step 6. The argv seen
by msiexec in running step 3 should appear exactly the same as step 6.
Results Observed:
Command line run using built area:
WINEPREFIX=/tmp/winebug9628/ WINEDEBUG=+msiexec,+process ./wine
~/tmp/xlviewer.exe
output from step 4:
1. "trace:process:build_argv cmdlineW = ..."
trace:process:build_argv cmdlineW = L"\"c:\\windows\\system32\\msiexec.exe\"
/I C:\\windows\\temp\\IXP030.TMP\\XLVIEW.MSI CDCACHE=\"2\"
LAUNCHEDFROMSETUP=\"1\" SETUPEXEPATH=\"C:\\windows\\temp\\IXP030.TMP\\\"
SETUPEXENAME=\"SETUP.EXE\" /lpiwaeo \"C:\\windows\\temp\\Microsoft Office
Excel Viewer 2003 Setup(0054)_Task(0001).txt\" CDCACHE=\"0\"
DWSETUPLOGFILE=\"C:\\windows\\temp\\Microsoft Office Excel Viewer 2003
Setup(0054).txt\" DWMSILOGFILE=\"C:\\windows\\temp\\Microsoft Office Excel
Viewer 2003 Setup(0054)_Task(0001).txt\""
2. "trace:process:build_argv resulting argv[]" + following lines
trace:process:build_argv resulting argv[]
trace:process:build_argv argv[1] = "c:\windows\system32\msiexec.exe"
trace:process:build_argv argv[2] = "/I"
trace:process:build_argv argv[3] = "C:\windows\temp\IXP030.TMP\XLVIEW.MSI"
trace:process:build_argv argv[4] = "CDCACHE=2"
trace:process:build_argv argv[5] = "LAUNCHEDFROMSETUP=1"
trace:process:build_argv argv[6] = "SETUPEXEPATH=C:\windows\temp\IXP030.TMP"
SETUPEXENAME=SETUP.EXE /lpiwaeo C:\windows\temp\Microsoft"
trace:process:build_argv argv[7] = "Office"
trace:process:build_argv argv[8] = "Excel"
trace:process:build_argv argv[9] = "Viewer"
trace:process:build_argv argv[10] = "2003"
trace:process:build_argv argv[11] = "Setup(0054)_Task(0001).txt CDCACHE=0
DWSETUPLOGFILE=C:\windows\temp\Microsoft"
trace:process:build_argv argv[12] = "Office"
trace:process:build_argv argv[13] = "Excel"
trace:process:build_argv argv[14] = "Viewer"
trace:process:build_argv argv[15] = "2003"
trace:process:build_argv argv[16] = "Setup(0054).txt
DWMSILOGFILE=C:\windows\temp\Microsoft"
trace:process:build_argv argv[17] = "Office"
trace:process:build_argv argv[18] = "Excel"
trace:process:build_argv argv[19] = "Viewer"
trace:process:build_argv argv[20] = "2003"
trace:process:build_argv argv[21] = "Setup(0054)_Task(0001).txt"
3. "trace:msiexec:main argv[0]..." and following lines
trace:msiexec:main argv[0] = "c:\windows\system32\msiexec.exe"
trace:msiexec:main argv[1] = "/I"
trace:msiexec:main argv[2] = "C:\windows\temp\IXP030.TMP\XLVIEW.MSI"
trace:msiexec:main argv[3] = "CDCACHE=2"
trace:msiexec:main argv[4] = "LAUNCHEDFROMSETUP=1"
trace:msiexec:main argv[5] = "SETUPEXEPATH=C:\windows\temp\IXP030.TMP"
SETUPEXENAME=SETUP.EXE /lpiwaeo C:\windows\temp\Microsoft"
trace:msiexec:main argv[6] = "Office"
trace:msiexec:main argv[7] = "Excel"
trace:msiexec:main argv[8] = "Viewer"
trace:msiexec:main argv[9] = "2003"
trace:msiexec:main argv[10] = "Setup(0054)_Task(0001).txt CDCACHE=0
DWSETUPLOGFILE=C:\windows\temp\Microsoft"
trace:msiexec:main argv[11] = "Office"
trace:msiexec:main argv[12] = "Excel"
trace:msiexec:main argv[13] = "Viewer"
trace:msiexec:main argv[14] = "2003"
trace:msiexec:main argv[15] = "Setup(0054).txt
DWMSILOGFILE=C:\windows\temp\Microsoft"
trace:msiexec:main argv[16] = "Office"
trace:msiexec:main argv[17] = "Excel"
trace:msiexec:main argv[18] = "Viewer"
trace:msiexec:main argv[19] = "2003"
trace:msiexec:main argv[20] = "Setup(0054)_Task(0001).txt"
Output from step 6 in running the following command line in the built area:
WINEPREFIX=/tmp/winebug9628/ WINEDEBUG=+msiexec,+process
./programs/msiexec/msiexec /I C:\\windows\\temp\\IXP030.TMP\\XLVIEW.MSI
CDCACHE="2" LAUNCHEDFROMSETUP="1"
SETUPEXEPATH="C:\\windows\\temp\\IXP030.TMP\\" SETUPEXENAME="SETUP.EXE"
/lpiwaeo "C:\\windows\\temp\\Microsoft Office Excel Viewer 2003
Setup(0054)_Task(0001).txt" CDCACHE="0"
DWSETUPLOGFILE="C:\\windows\\temp\\Microsoft Office Excel Viewer 2003
Setup(0054).txt" DWMSILOGFILE="C:\\windows\\temp\\Microsoft Office Excel Viewer
2003 Setup(0054)_Task(0001).txt"
Note the only change from the line outputted by the traces were all '\"'
converted to '"' and using the msiexec in the locally built area.
1. "trace:msiexec:main argv[0]..." and following lines
trace:msiexec:main argv[0] = "./programs/msiexec/msiexec.exe.so"
trace:msiexec:main argv[1] = "/I"
trace:msiexec:main argv[2] = "C:\windows\temp\IXP030.TMP\XLVIEW.MSI"
trace:msiexec:main argv[3] = "CDCACHE=2"
trace:msiexec:main argv[4] = "LAUNCHEDFROMSETUP=1"
trace:msiexec:main argv[5] = "SETUPEXEPATH=C:\windows\temp\IXP030.TMP\"
trace:msiexec:main argv[6] = "SETUPEXENAME=SETUP.EXE"
trace:msiexec:main argv[7] = "/lpiwaeo"
trace:msiexec:main argv[8] = "C:\windows\temp\Microsoft Office Excel Viewer
2003 Setup(0054)_Task(0001).txt"
trace:msiexec:main argv[9] = "CDCACHE=0"
trace:msiexec:main argv[10] = "DWSETUPLOGFILE=C:\windows\temp\Microsoft Office
Excel Viewer 2003 Setup(0054).txt"
Which is not the same as previously got when msiexec was called by the setup
exe.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10527
Summary: DNS9.5 Preferred no longer runs
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://nuance.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
DNS9 Preferred no longer runs as of 21-Nov-2007 git.
Until now, installation has been done using Dan Kegel's Winetricks and DCOM98,
plus a couple of other things (DOCBJ.DLL, GDIPLUS).
As of yesterday, DNS9 still installs and trains, but the engine does not work.
I believe it has to do with WINE attempting a native solution to DCOM98.
So maybe this shouldn't be considered a bug...?
However, I was anxious to report it, since the same bug seems to have kept
DNS9.5 Standard from operating correctly. (Standard has NEVER run,even with
WINETRICKS.)
Error message on DNS9 Preferred:
fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10165
Summary: Bug in display characters in Ragnarok Online
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gerdal(a)poczta.fm
Bug in display characters in Ragnarok Online.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10049
Summary: Patch "Try to load Wine's TrueType fonts from the build
directory" causes regression in GeoInfo
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
CC: huw(a)codeweavers.com
With it the label on many buttons disappears and a big red oval appears on the
main screen. This is even if I install MS Tahoma using winetricks so it looks
like this is not a problem with our Tahoma that was hidden before (I run Wine
from the build directory). I will try to find something more what is going
wrong.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10004
Summary: Adobe Captivate 3 tryout installer asks for serial
number
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.adobe.com/products/captivate/
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Tryout versions should not ask for serial numbers,
and this one doesn't under Windows, but it does
under Wine.
Now, not many people care about Adobe Captivate nee Robodemo, judging by
http://www.google.com/trends?q=adobe+captivate%2Crobodemo%2Ccamtasia%2Ccore…
but MSI is something we really want to work, and this is a nice test case.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9844
Summary: System Shock 2 crashes often at certain in game events
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: abc.mikey(a)googlemail.com
Created an attachment (id=8313)
--> (http://bugs.winehq.org/attachment.cgi?id=8313)
Wine debut output
System shock 2 crashes often (but not always) at certain in game events, for
example when gun turrets are activated.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9834
Summary: Counter Strike Source gives an error "Disconnect: client
timed out" when connecting to VAC servers
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: abc.mikey(a)googlemail.com
Created an attachment (id=8294)
--> (http://bugs.winehq.org/attachment.cgi?id=8294)
Ouput from wine when it failed to connect (no obvious error nessages)
Counter Strike Source gives an error "Disconnect: client timed out" when
connecting to VAC secured servers, but not non-secured servers.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9814
Summary: Team Fortress 2 will not start: stack overflow
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chase.venters(a)gmail.com
Created an attachment (id=8262)
--> (http://bugs.winehq.org/attachment.cgi?id=8262)
Gzipped wine log, WINEDEBUG=+tid,+seh,+loaddll,+d3d,+d3d_shader,+d3d9
WINE version: 0.9.46 (obtained via git)
I can run VALVE's Steam just fine. When I attempt to launch Team Fortress 2, a
top-level window with the appropriate icon and application name is created.
However, it appears that this window is never rendered to - it basically shows
a motionless snapshot of my desktop before the window was opened (for instance,
the clock : that normally blinks no longer appears).
I can Alt-Tab back through my desktop windows, and Steam continues to work, but
the Wine debugging output indicates a stack overflow:
0049:err:seh:setup_exception stack overflow 792 bytes in thread 0049 eip
b7d66e53 esp 00240ce8 stack 0x241000-0x350000
Others have reported success with this application according to AppDB. Please
let me know if there is any further information I can provide to assist.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9796
Summary: Some games need glsl enabled (metabug)
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Created an attachment (id=8237)
--> (http://bugs.winehq.org/attachment.cgi?id=8237)
crash with glsl disabled
Hello,
this is probably a meta-bug - collecting affected games here.
Bioshock demo crashes if glsl is not enabled.
Using following registry settings enables bioshock demo to run:
--- snip ---
HKEY_CURRENT_USER/Software/Wine/Direct3D
UseGLSL = "enabled"
--- snip ---
Optional: OffscreenRenderingMode = "fbo"
wine --version
wine-0.9.45-406-g2ba3247
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.