http://bugs.winehq.org/show_bug.cgi?id=16968
Summary: environment variables not passed across to commands that
are run with popen
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
this is the python test from test_os.py, but it should work equally
as well in straight c-code. the only reason this test _happened_
to be run at all is because i have msys installed. normally, under
windows, this test would be entirely skipped.
# Bug 1110478
def test_update2(self):
if os.path.exists("/bin/sh"):
os.environ.update(HELLO="World")
value = os.popen("/bin/sh -c 'echo $HELLO'").read().strip()
self.assertEquals(value, "World")
--
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=19176
Summary: err:ddeml:WDML_CreateString Unknown code page 437
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: perchrh-wine(a)pvv.org
Created an attachment (id=22166)
--> (http://bugs.winehq.org/attachment.cgi?id=22166)
Output of WINEDEBUG=+ddeml
The installer of "Mordor 1 The Depths of Dejenol" (demo and full version) fails
and the message "err:ddeml:WDML_CreateString Unknown code page 437".
This may or may not be the reason it crashes, but in any case it looks to be a
shortcoming in Wine's ddeml.dll
--
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=25283
Summary: Unimplemented function urlmon.dll.410
Product: Wine
Version: 1.3.7
Platform: x86-64
URL: http://http://download.microsoft.com/download/C/C/0/CC
0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-E
NU.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
IE8 for XP crashes out with unimplemented function urlmon.dll.410 once
installed.
winetricks urlmon doesn't help, but urlmon.dll from Windows XP does.
Tested in wine-1.3.7-233-g9867c39.
--
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=17107
Summary: compiler warnings in server/fd.c on NetBSD
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: NetBSD
Status: NEW
Keywords: download, source
Severity: enhancement
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
fd.c: In function 'set_fd_epoll_events':
fd.c:580: warning: assignment makes integer from pointer without a cast
fd.c:581: warning: assignment makes integer from pointer without a cast
Only appears on NetBSD, but not OpenBSD/FreeBSD. Vincent Povirk helped me
investigate on IRC, and looks like the problem is that on FreeBSD, in
/usr/include/sys/event.h you've got:
struct kevent {
uintptr_t ident; /* identifier for this event */
short filter; /* filter for event */
u_short flags;
u_int fflags;
intptr_t data;
void *udata; /* opaque user data identifier */
};
But on NetBSD:
struct kevent {
uintptr_t ident; /* identifier for this event */
uint32_t filter; /* filter for event */
uint32_t flags; /* action flags for kqueue */
uint32_t fflags; /* filter flag value */
int64_t data; /* filter data value */
intptr_t udata; /* opaque user data identifier */
};
Note the difference in udata 'void *' vs 'intptr_t'.
Relevant lines from the code:
EV_SET( &ev[0], fd->unix_fd, EVFILT_READ, 0, NOTE_LOWAT, 1, (void *)user );
EV_SET( &ev[1], fd->unix_fd, EVFILT_WRITE, 0, NOTE_LOWAT, 1, (void *)user
);
removing (void *) or changing it to intptr_t fixes the warning, but doesn't
seem a proper fix. Probably needs an ifdef or typedef, but I'll leave that for
someone else to decide.
--
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=27374
Summary: FAR: Alt-tab will cause "alt" key to be left as
pressed when returning to console window (regression)
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: singularita(a)gmail.com
When I updated wine I noticed that when I alt-tabbed out of console window with
opensource FAR (http://www.farmanager.com/opensource.php?l=en) file manager
(run via "wineconsole.exe --backend=user") and then either alt-tabbed back or
changed focus using mouse, Alt key was stuck as pressed (therefore pressing F10
resulted in program receiving Alt+F10, arrow down resulted in Alt+arrow down,
etc ...). Pressing and releasing the Alt key after alt-tabbing back fixes the
issuem, though it is slightly annoying.
This does not happen before, in good versions when alt-tabbed back, alt
returned to normal and pressing a key would result in program receiving just
that key.
I've verified that the bug is still present in current head of master in git
and I've run the regression test to find the commit that introduced this bug:
Result of regression test:
bc4afb078677095468d4ee8f9a15c18cbb47bbbf is the first bad commit
commit bc4afb078677095468d4ee8f9a15c18cbb47bbbf
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Mar 1 11:54:55 2011 +0100
server: Don't pass a thread id to send_hardware_message, determine it from
the window.
:040000 040000 4e7ac89f77a4ddc31fd947151c34d0acadc5dcc0
a3d857abf43a1eed9fcb6837ea006ac00d80a1a7 M dlls
:040000 040000 7247b4b93aca9c98394638ccd0c48a788133a8cd
45aed0fb1bc86b403af16666b3fa5963c2abaf7d M include
:040000 040000 469f40ddbdca23554a397c5122a78e09a13e2c75
f118b4fd2fb23ecbde100798c68b3221fe5ec2fc M server
--
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=28810
Bug #: 28810
Summary: d3dx9_36/tests/mesh.ok: D3DXLoadMeshTest fails under
valgrind
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
Under Valgrind, "make mesh.ok" fails with
mesh.c:2333: Test failed: Vertex[7]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2333: Test failed: Vertex[11]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2333: Test failed: Vertex[18]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2406: Test failed: Vertex[7]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2406: Test failed: Vertex[11]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2406: Test failed: Vertex[18]: Expected diffuse b3ffffff, got b2ffffff
This is on my i5 laptop, nvidia GeForce GTS 360M, NVIDIA 280.13.
The test passes without valgrind.
--
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=29183
Bug #: 29183
Summary: Heavy corruption when rendering edit control with
WM_PRINTCLIENT and possibly invalid HDC
Product: Wine
Version: 1.3.33
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toni.spets(a)iki.fi
Classification: Unclassified
Created attachment 37649
--> http://bugs.winehq.org/attachment.cgi?id=37649
Hack for the problem
This is the most severe bug with ResEdit currently. For some reason
WM_PRINTCLIENT might get a wParam with HDC that causes massive corruption when
used. Forcing using Begin/EndPaint avoid the problem.
On Windows it seems to work just fine.
Patch with hack attached and another attachment with the corruption shown. The
window height problem with the dialog in the center is related to another bug.
Also attached a screenshot with all my hacks applied.
--
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=23750
Summary: SpongeBob SquarePants: Diner Dash 2 - mouse has pink
background
Product: Wine
Version: 1.2
Platform: x86
URL: http://arcade.nick.com/nick/gameinfo.jsp?s=SpongeBobDi
nerDash2
OS/Version: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=29763)
--> (http://bugs.winehq.org/attachment.cgi?id=29763)
screenshot
Looks like it's supposed to be an animated cursor, but the background is pink.
I'll attach a screenshot.
Terminal shows:
fixme:d3d:swapchain_init Add OpenGL context recreation support to
context_validate_onscreen_formats
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 58
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 64
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 58
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 64
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 58
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 64
--
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=10841
Summary: Support for dynamic resolution changing
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thedamocles(a)gmail.com
After a disscussion on this bug it appears the it would be great if Wine
supports dynamic resolution changing (just like windows when you swith between
a game and the desktop).
--
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=28062
Summary: King's Bounty: The Legend - interface and all 3D
objects disappear in half-second after first level
loading
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: runetmember(a)gmail.com
King' Bounty: The Legend 1.7 (Russian digital download version).
WINE 1.3.26.
Game start only with native d3dx9_36 (
http://bugs.winehq.org/show_bug.cgi?id=24725 ). After loading of first level
all 3D objects and interface disappear. Screenshot and log 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.