http://bugs.winehq.org/show_bug.cgi?id=16591
Summary: Sword of the Stars crashes after intro movies, before
main menu
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)wnoise.ofb.net
This program used to work great.
Regression testing shows that git commit
4adb342327c520d2bc1f245525666a8c09e358ec causes this crash. Reverting this
commit at current HEAD (1.1.11 - 0b3b6e67ea663e853cc6bb93f4da447ab934e50d)
restores functionality.
--
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=16587
Summary: Warhammer: Battle March - Copy protection (?) prevents
loading
Product: Wine
Version: 1.1.10
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: troy.sobotka(a)gmail.com
Summary: After working around an installation on a legally store purchased
copy of this game, the game refuses to load under Wine. The application issues
the traditional 'Please insert the correct DVD into the drive.' error.
Architecture: Tested on both Ubuntu 8.10 amd64 and i386 versions using
WineHQ's Ubuntu Debian repositories version 1.1.0
Frequency: Always
--
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=16561
Summary: warning: implicit declaration of function '_mkdir'
Product: Wine
Version: 1.1.10
Platform: PC
OS/Version: FreeBSD
Status: NEW
Keywords: download, regression, source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
[pcbsd@pcbsd ~/wine-git]$ cat foobar.txt | grep ": warning:"
shellpath.c:2163: warning: implicit declaration of function '_mkdir'
shfldr_unixfs.c:1745: warning: implicit declaration of function '_mkdir'
xdg.c:253: warning: implicit declaration of function '_mkdir'
theme.c:966: warning: implicit declaration of function '_mkdir'
winemenubuilder.c:707: warning: implicit declaration of function '_mkdir'
fd.c:1562: warning: implicit declaration of function '_mkdir'
request.c:530: warning: implicit declaration of function '_mkdir'
Regression caused by Alexandre's commit:
http://source.winehq.org/git/wine.git/?a=commitdiff;h=53e165716d20076610295…
--
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=16547
Summary: Pampered Chef Plus installer doesn't recognize windows
version
Product: Wine
Version: 1.1.10
Platform: Other
URL: http://www.pamperedchef.com/
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://verbalshadow.wordpress.com/2008/08/02/how-to-run-pampered-partner-pl…
complained that WINE will not run the Pampered Partner Plus setup program
because it doesn’t detect the OS correctly, so I had a look.
Turns out it was calling GetFileVersionInfo on winver.exe,
and we didn't have a version record in that file.
--
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=16421
Summary: EVE Online fails to start with hardware vertex shaders
Product: Wine
Version: 1.1.10
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: startaq(a)gmail.com
Created an attachment (id=17757)
--> (http://bugs.winehq.org/attachment.cgi?id=17757)
Log of wine trying to run eve
EVE Online doesn't start anymore with Wine 1.1.10, it works with 1.1.9.
Attached is the log file. Note that EVE starts when I disable hardware vertex
shader support, but obviously the premium graphics won't work then.
I'm using the NVidia driver 177.82.
--
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=16344
Summary: cmd.exe builtin time prints wrong message : current date
instead of current time
Product: Wine
Version: 1.1.9
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: le_afo(a)gmx.net
Created an attachment (id=17657)
--> (http://bugs.winehq.org/attachment.cgi?id=17657)
patch for wine-1.1.9/programs/cmd/builtins.c
cmd.exe builtin time command prints 'Current Date is'
instead of 'Current Time is'
coz wine-1.1.9/programs/cmd/builtins.c : WCMD_setshow_time
uses LoadMessage( WCMD_CURRENTDATE, ...)
instead of WCMD_CURRENTTIME(WCMD_CURRENTTIME, ... )
the following patch will fix it:
--- wine-1.1.9/programs/cmd/builtins.c.orig 2008-11-21 17:20:28.000000000
+0
100
+++ wine-1.1.9/programs/cmd/builtins.c 2008-12-05 14:28:51.000000000 +0100
@@ -2135,7 +2135,7 @@
GetLocalTime(&st);
if (GetTimeFormat (LOCALE_USER_DEFAULT, 0, &st, NULL,
curtime, sizeof(curtime)/sizeof(WCHAR))) {
- WCMD_output (WCMD_LoadMessage(WCMD_CURRENTDATE), curtime);
+ WCMD_output (WCMD_LoadMessage(WCMD_CURRENTTIME), curtime);
if (strstrW (quals, parmT) == NULL) {
WCMD_output (WCMD_LoadMessage(WCMD_NEWTIME));
WCMD_ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer,
--
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=16293
Summary: Activeworlds client 4.2 crashes in
IDirectXFileEnumObjectImpl_Create
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://activeworlds.com/products/download.asp
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Do "winetricks mfc42 wininet" to work around bug 16292,
then launch the app, let it update itself (to build 1033?),
and log in to the server as a guest. It will bring up the interface
and let you move around for a while, but in under about
a minute it crashes / hangs with the following backtrace:
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code
(0x7e316594).
Backtrace:
=>1 IDirectXFileEnumObjectImpl_Create+0x74(ppObj=0xa2fbf4)
[dlls/d3dxof/d3dxof.c:1766] in d3dxof
2 IDirectXFileImpl_CreateEnumObject+0x3da(iface=0x3240020, pvSource=<?>,
dwLoadOptions=2, ppEnumObj=0xa2fc4c) [dlls/d3dxof/d3dxof.c:295] in d3dxof
3 0x004eaedd in aworld (+0xeaedd) (
IDirectXFileEnumObjectImpl_Create+0x74 [dlls/d3dxof/d3dxof.c:1766] in d3dxof:
movl %edx,0x0(%eax)
1766 object->lpVtbl.lpVtbl = &IDirectXFileEnumObject_Vtbl;
--
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=15768
Summary: lego star wars II crashes with joystick plugged in
Product: Wine
Version: 1.1.6
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: usp10
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ajw1980(a)gmail.com
CC: hans(a)meelstraat.net
Created an attachment (id=16865)
--> (http://bugs.winehq.org/attachment.cgi?id=16865)
crash on start
This is a regression from 1.1.5. I'll attach the console output. I did a
regression test and got this:
addcf866cbb42309ccafa41e8424c3b80a00a7ba is first bad commit
commit addcf866cbb42309ccafa41e8424c3b80a00a7ba
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Thu Oct 9 15:17:29 2008 +0200
usp10: Store glyph mappings and widths in the script cache.
:040000 040000 cde3af8be4df698c3c7f34595e989823f47f1702
6ec2dfbd7d086d4f4c3790dbcff71a3cfa7d418b M dlls
Reverting that patch on 1.1.7 makes it work ok.
--
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=15163
Summary: Installation of MP3Gain hangs
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rhampov(a)web.de
Created an attachment (id=15902)
--> (http://bugs.winehq.org/attachment.cgi?id=15902)
MP3Gain 1.2.5 Full on Wine 1.1.4 - XP Mode - Console output
Trying to install the 'full version' of MP3Gain 1.2.5 (Microsoft Visual Basic
run-time files) hangs after about 25%.
Last message shown in Installer: Unregistering: C:\windows\system32\itircl.dll
Console output attached.
--
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.