http://bugs.winehq.org/show_bug.cgi?id=22342
Summary: Wine on Ubuntu Lucid 10.04 x64 does not seem to
correctly locate GL libraries
Product: Wine
Version: 1.1.42
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: james.scholes(a)gmail.com
Since updating to Ubuntu 10.04 …
[View More]pre-release, I am unable to run any wine app
that requires OpenGL. I believe these is a problem with wine correctly locating
the 32bit dlls required, but I'm no expert.
Games tested are: Steam (runs, but launching any game causes it to exit)
Heroes of Might and Magic V (exits before splash screen)
Fallout 3 (Steam) (exits before launcher)
All contents of Orange Box (exits before video (before start if -novid used))
Every app exits with the same error:
err:ole:CoGetClassObject class {9a5ea990-3034-4d6f-9128-01f3c61022bc} not
registered
err:ole:CoGetClassObject no class object {9a5ea990-3034-4d6f-9128-01f3c61022bc}
could be created for context 0x1
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 137 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 530764
Current serial number in output stream: 530764
The serial numbers differ, but everything else is the same.
Note glxgears works fine, and glxinfo reports direct rendering: Yes
This is with an ATI HD 4870 graphics card, and the latest Catalyst drivers
(10.4)
I am happy to provide more information if needed.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=21276
Summary: python's test_uuid test fails
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.python.org
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an …
[View More]attachment (id=25586)
--> (http://bugs.winehq.org/attachment.cgi?id=25586)
test output
Install python and run:
wine 'c:\Python31\python.exe' -m test.test_uuid
test_windll_getnode (__main__.TestUUID) ... FAIL
======================================================================
FAIL: test_windll_getnode (__main__.TestUUID)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python31\lib\test\test_uuid.py", line 354, in test_windll_getnode
self.check_node(uuid._windll_getnode(), 'windll')
File "C:\Python31\lib\test\test_uuid.py", line 293, in check_node
self.assertEqual(universal_local_bit, 0, message)
AssertionError: 3ea2990eaebd doesn't look like a real MAC address
Full 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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=22325
Summary: Baldur`s Gate Trilogy can`t save
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
Today I saw that Baldur`s Gate Trilogy can`t save the game. There is no any
usefull output on console …
[View More](only stringerr:ntdll:RtlpWaitForCriticalSection
section 0x167a28 "?" wait timed out in thread 001e, blocked by 0000, retrying
(60 sec))
I think that it`s a wine bug. chmod on folder Save is set to 777
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=22343
Summary: Word Pro overwrites symbolic links
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Hi All,
The is major as it is messing the crap out of my file system.
I am using Lotus Word …
[View More]Pro N9.8.0208.1200. When I create a symbolic link on my
desktop to a document and use the link to open the document, saving the file
overwrites the link with the actual document. This problem can not be
reproduced with Notepad.exe
To reproduce:
1) open word pro and create a document. Save the document to anywhere but
~/Desktop. For instance ~/eraseme.lwp
2) in your Desktop, create a symbolic link to the document you just created.
For instance ln -s ~/eraseme.lwp ~/Desktop/.
3) open the new link on your desktop
4) make a change to the document and save it back. Exit the document.
5) Check the link on you desktop. It will be replaced with the actual
document. And now you have two document of the same name with different
revisions in different directories.
I would really appreciate it if you would fix this asap!
Many thanks,
-T
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=22338
Summary: spawnl(P_WAIT, "...") and system() do not wait if a
host program is invoked
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bonzini(a)gnu.org
Sample program:
#include <stdio.h&…
[View More]gt;
#include <stdlib.h>
int main(int argc, char **argv)
{
int i;
if (argc == 2)
system (argv[1]);
for (i = 0; i < 10000; i++)
puts (argc == 2 ? "a" : "b");
}
Compile it for both Windows and Linux:
gcc test.c
i686-pc-mingw32-gcc test.c
Now, running a Windows child process will correctly wait for the child process
to finish:
$ ./a.exe ./a.exe |uniq
b
a
Instead, Wine will not wait for a Linux child process to finish:
$ ./a.exe ./a.out |uniq
a
b
a
I _think_ i can work around the bug by wrapping the Unix program with a wrapper
that links to libwine, but I am not yet sure.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=3534
Per Larsson <per(a)albatorsk.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |per(a)albatorsk.com
--- Comment #26 from Per Larsson <per(a)albatorsk.com> 2010-04-11 17:20:49 ---
I see this problem with Wine 1.1.42. I don't know if it's a problem with Wine,
GNOME, the windows application …
[View More]Spotify (see attachment above) or a combination
of two or more of them.
Spotify is the green icon to the left. None of the other (native linux
applications') icons displays this behavior.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=22336
Summary: Wine does not remove menu entries of Schtirlitz
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Schtirlitz is a freeware automatic encoding recognition utility used to recover
files. …
[View More]Upon uninstall Schtirlitz menu entry still not removed.
Schtirlitz can be found here:
http://www.divshare.com/download/4622760-e6f
--
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.
[View Less]