http://bugs.winehq.org/show_bug.cgi?id=12076
Summary: Database app refused to install unless
system32/drivers/etc/{services,host} exist
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user's informix-based app refused to install until
the empty files c:/windows/system32/drivers/etc/{services,host}
were created, see
http://winehq.org/pipermail/wine-users/2008-March/030256.html
I looked around a bit for other system32/drivers/etc files.
http://support.microsoft.com/kb/130024 describes hosts, services, and protocols
http://support.microsoft.com/kb/105997 describes lmhosts
It looks like some apps find that directory by looking at
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\DataBasePath
and MSN Messenger 7.5 f*cks up by changing that variable's type, see
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6343068
Getting this all right would be a lot of work. Just creating
two empty files might be reasonable, though, since it
allows the user's app to install.
--
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=32749
Bug #: 32749
Summary: Implement atl100.dll.AtlAxDialogBoxW to show error
dialogs (Visual Studio 2010 (10.0) Express Edition)
Product: Wine
Version: 1.5.21
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
continuation of bug 32564 (Visual Studio 2010 (10.0) Express Edition needs
atl100.dll.AtlAxDialogBoxW).
Although it's stubbed for now it might be useful to load and show the dialog
resource.
--- snip ---
0009:fixme:atl:AtlAxDialogBoxW (0x401f0000 #00cc 0x2008a 0x401b589f 0)
--- snip ---
The user doesn't know what happened in this case.
Regards
--
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=33118
Bug #: 33118
Summary: Adding bin.base64 attribute causes duplicate datatype
attribute
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Classification: Unclassified
The following psedocode is causing duplicate xmlns to appear on a node.
node->Create Attribute (_T("xmlns:dt"),
_T("urn:schemas-microsoft-com:datatypes"));
node->Put Data Type(_T("bin.base64"));
node->Put Node TypedValue("DATA");
Do you get a node that looks like the following.
<UML:TaggedValue xmlns:dt="urn:schemas-microsoft-com:datatypes"
xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="bin.base64" >...
--
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=16666
Summary: wine segfaults on launch
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: critical
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=18290)
--> (http://bugs.winehq.org/attachment.cgi?id=18290)
core dump
Now for the biggest bug :-)
Wine segfaults on launch of any program. Even 'wine --version' crashes.
I've got this patch in place (from openbsd's port):
diff --git a/loader/pthread.c b/loader/pthread.c
index 4c0c892..e7f6479 100644
--- a/loader/pthread.c
+++ b/loader/pthread.c
@@ -96,6 +96,12 @@ static void init_thread( struct wine_pthread_thread_info
*info )
/* if base is too large assume it's the top of the stack instead */
if ((char *)info->stack_base > &dummy)
info->stack_base = (char *)info->stack_base - info->stack_size;
+#elif defined(__OpenBSD__)
+ stack_t stack;
+ if (pthread_stackseg_np(pthread_self(), &stack) != 0)
+ abort ();
+ info->stack_base = (char *)stack.ss_sp - stack.ss_size;
+ info->stack_size = stack.ss_size;
#else
/* assume that the stack allocation is page aligned */
char dummy;
@@ -163,6 +169,8 @@ static void init_current_teb( struct
wine_pthread_thread_info *info )
info->pid = getpid();
#ifdef __sun
info->tid = pthread_self(); /* this should return the lwp id on solaris
*/
+#elif defined(__OpenBSD__)
+ info->tid = pthread_self();
#elif defined(__APPLE__)
info->tid = mach_thread_self();
#elif defined(__FreeBSD__)
Though, it still segfaults without it.
wine-pthread.core 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.
http://bugs.winehq.org/show_bug.cgi?id=30600
Bug #: 30600
Summary: Emergency 3 crash with page fault on read access to
0x00000000 in 32-bit code (0x100ac010)
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linuxcobra(a)gmx.de
Classification: Unclassified
Created attachment 40041
--> http://bugs.winehq.org/attachment.cgi?id=40041
Backtrace-output
when i install this Game under wine, the install works, but when i will start
the game, will not work.
via original Windows XP / ME ( both tested) : no problems
--
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=21564
Summary: warning forever ignores keyboard input after
losing/regaining focus
Product: Wine
Version: 1.1.37
Platform: x86
URL: http://www18.big.or.jp/~hikoza/Prod/index_e.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Steps to reproduce:
* Install Warning Forever from the linked website.
* Start the program by running c:\wf\wf.exe. (The installer does not create a
shortcut. This is the same on Windows.)
* Select "Window mode".
* Verify that the 'z' key can be used to make selections in the menu.
* Switch to another window.
* Switch back to Warning Forever window.
* Verify that keyboard input no longer works.
--
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=22369
Summary: A child window without WS_EX_MDICHILD style should not
be tiled by the WM_MDITILE message.
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.m.winehq(a)gmail.com
In user32/mdi.c
-> MDITile
-> #L763(wine-1.1.42) for-loop "remove all the windows we don't want",
the windows without WS_EX_MDICHILD window style should be also removed from
win_array.
MDICascade is also.
--
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=24352
Summary: Virtual desktop does not respect modeless child window
Z-order
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: multitude(a)internode.on.net
1. Run 'winecfg' and ensure the 'Graphics -> Emulate a virtual desktop' option
is off.
2. Press the OK button to apply any changes and close 'winecfg'.
2. Run 'wine notepad' and search for text (Ctrl-F).
3. Leaving the 'Find' window open, mouse click the main 'Notepad' window.
CORRECT RESULT: The 'Notepad' window becomes active, the 'Find' child window
becomes inactive and remains in front of the main 'Notepad' window.
4. Exit 'notepad', run 'winecfg' and enable the 'Graphics -> Emulate a virtual
desktop' option.
5. Press the OK button to apply the change and close 'winecfg'.
6. Run 'wine notepad' again and search for text (Ctrl-F).
7. Leaving the 'Find' window open, mouse click the main 'Notepad' window.
INCORRECT RESULT: When the 'Notepad' window becomes active the 'Find' window
disappears behind the 'Notepad' window.
Confirmed in Wine 1.3.2 and Wine 1.2.
Bug found when testing Chessmaster Grandmaster Edition.
--
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=26723
Summary: Dragon Age Ultimate Edition installer rejects second
disc
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Dragon Age Ultimate Edition's installer runs fine until you
get to the second disc prompt. When you put in the second disc,
wait for it to mount, and click the installer's "Retry" button,
the game thinks for a moment... then ejects the disc, and puts
up the insert disc prompt again.
A +file log of the stuff after inserting the second disc shows:
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll",0x33f0e0,0x33f0f4,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll" 520 0x33ee10 0x33f0f4)
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll",0x33ed00,0x33ed14,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll" 520 0x33ea30 0x33ed14)
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll",0x33f0e0,0x33f0f4,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll" 520 0x33ee10 0x33f0f4)
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll",0x33ed00,0x33ed14,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll" 520 0x33ea30 0x33ed14)
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll",0x33f0e0,0x33f0f4,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll" 520 0x33ee10 0x33f0f4)
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll",0x33ed00,0x33ed14,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll" 520 0x33ea30 0x33ed14)
trace:file:DeviceIoControl (0xb8,2d480c,(nil),0,(nil),0,0xeddb98,(nil))
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll",0x33f0e0,0x33f0f4,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisNextFile.dll" 520 0x33ee10 0x33f0f4)
trace:file:RtlDosPathNameToNtPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll",0x33ed00,0x33ed14,(nil))
trace:file:RtlGetFullPathName_U
(L"C:\\users\\dank\\Temp\\nsy20cc.tmp\\nsisUnRar2.dll" 520 0x33ea30 0x33ed14)
trace:file:DeviceIoControl (0xb8,2402c,0xedd7de,2,0xedd7e0,24,0xedd7d8,(nil))
trace:file:DeviceIoControl (0xb8,2d4808,(nil),0,(nil),0,0xeddb98,(nil))
One funky detail: both disc1 and disc2 have the same volume label
(the guy at EA who made the masters wasn't thinking straight, I guess).
I sure hope this isn't confusing the operating system.
--
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=33362
Bug #: 33362
Summary: Dragon Age Origins texture replaced by black
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scrimekiler(a)yahoo.fr
Classification: Unclassified
Created attachment 44138
--> http://bugs.winehq.org/attachment.cgi?id=44138
Screenshot of texture bug
I tried Dragon Age Origins with a lot of different Direct3D settings in wine
registry, but still one problem remaining : textures are sometimes replaced by
black shapes, like missing texture...Sometimes it's only the armors or cloth
from vendors or characters who are replaced by black but sometimes it's like 50
% the game textures.
Currently using wine 1.5.27 and Dragon Age Origins 1.5
--
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.