http://bugs.winehq.org/show_bug.cgi?id=16443
Summary: Regression in ntdll breaks IE6 setup
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spa(a)starfinanz.de
CC: julliard(a)winehq.org
Following commit breaks installation of Internet Explorer 6 setup after
simulated reboot.
> Module: wine
> Branch: master
> Commit: 2e25b859eaa0d9b479f8a51327ae6bdd0e327f87
> URL: http://source.winehq.org/git/wine.git/?a=commit;h=2e25b859eaa0d9b479f8a5132…
>
> Author: Alexandre Julliard <julliard(a)winehq.org>
> Date: Mon Nov 10 13:20:45 2008 +0100
>
> ntdll: Don't call the dll entry point for native modules.
Error is:
err:ntdll:RtlpWaitForCriticalSection section 0x6d384158 "?" wait timed out in
thread 0044, blocked by 0000, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x6d384158 "?" wait timed out in
thread 0044, blocked by 0000, retrying (60 sec)
I know that IE is not your favorite app. However, many apps still need native
IE. Any chance to restore old behaviour?
This commit is also the cause for Bug 16425.
--
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=14473
Summary: msn 8.5 final does not show the initial screen
Product: Wine
Version: 1.1.0
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spreetec(a)gmx.net
messenger starts but the window stays grey/empty
after adding riched20.dll i can see the blincking curser, but no
fonts/colors/graphics...
--
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=14252
Summary: Windows Live Messenger 8.1 just show a blue box
Product: Wine
Version: 1.1.0
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=d78f2ff1-79ea-4066-8ba0-ddbed94864fc&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
After installing Messenger 8.1, when you open the main window you only see a
blue box. In the console you can see these three lines related to gdiplus.
fixme:gdiplus:GdipImageGetFrameCount not implemented
fixme:gdiplus:GdipImageGetFrameDimensionsList not implemented
fixme:gdiplus:GdipImageSelectActiveFrame not implemented
After install native gdiplus using winetricks the window will appear correctly.
--
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=7371
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |275dbeb74e525c52ee0ae384d8e
| |11068b6c949f7
CC| |focht(a)gmx.net
Component|-unknown |setupapi
OS|other |Linux
--
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=6393
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |9643411c324249860300641ef40
| |a15de5d95e406
CC| |focht(a)gmx.net
--
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=27920
Summary: ComboBoxEx doesn't process WM_ENABLE properly
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lightning_uk(a)imgburn.com
Created an attachment (id=35721)
--> (http://bugs.winehq.org/attachment.cgi?id=35721)
Test / Demo App
Unlike ComboBox, ComboBoxEx doesn't appear to process WM_ENABLE properly.
Its 'look' never changes from the initial one - be that enabled or disabled.
So if it's disabled when created, it'll stay looking disabled even after you've
enabled it. If it's enabled when created, it'll stay looking enabled even after
you've disabled it.
If disabled when created, you can't interact with it (get it to drop down etc)
even when you've supposedly enabled it.
The above can be fixed by handling WM_ENABLE in COMBOEX_WindowProc.
Something like the following does the trick (idea taken from combo.c)...
case WM_ENABLE:
if( infoPtr->hwndEdit )
EnableWindow( infoPtr->hwndEdit, (BOOL)wParam );
EnableWindow( infoPtr->hwndCombo, (BOOL)wParam );
/* Force the control to repaint when the enabled state changes. */
InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
return TRUE;
Once that has been added, you see another problem with the control...
When disabled, it doesn't draw the contents of the combobox - compared to
Windows (Vista/7 anyway), that's wrong.
Windows greys the control (drop down arrow etc) out but the image+text remain
visible and 'normal' colour.
That can be fixed by commenting out the following line in COMBOEX_DrawItem
if (!IsWindowEnabled(infoPtr->hwndCombo)) return 0;
I've added a demo app attachment that shows the problem with ComboBoxEx. You
should notice that if you press the 'Enable' button before the 'Show' button,
the ComboBoxEx control looks and behaves differently to if you press 'Show' and
then 'Enable'.
There's a traditional ComboBox on the form too just for comparison.
--
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=15650
Summary: Wine crashes if it is built with -fomit-frame-pointer
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amorozov(a)etersoft.ru
Created an attachment (id=16709)
--> (http://bugs.winehq.org/attachment.cgi?id=16709)
WINEDEBUG=+winedevice ./wine winecfg
If wine is built with
CFLAGS=-fomit-frame-pointer ./configure
then it crashes.
$ gcc --version
i586-alt-linux-gcc (GCC) 4.1.2 20070626 (ALT Linux, build 4.1.2-alt3)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--
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=3972
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |dotnet, download
Fixed by SHA1| |de4cab20a8be723414461213382
| |014d0229e9af5
URL|http://appdb.winehq.org/app |http://download.microsoft.c
|view.php?versionId=3754 |om/download/5/6/7/567758a3-
| |759e-473e-bf8f-52154438565a
| |/dotnetfx.exe
Component|-unknown |msi
--
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=14384
Summary: Can not install MSDN - installer crashes
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thesource(a)mail.ru
Created an attachment (id=14685)
--> (http://bugs.winehq.org/attachment.cgi?id=14685)
MSDN setup log
I can't install MSDN for Visual Studio 2005. Installer crashes after I press
Next on the screen where you choose Full or Custom installation. Log is
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=6253
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |1c93ee77e5cdf4e1fececbf5769
| |08889bcbe80dc
CC| |focht(a)gmx.net
Component|-unknown |qmgr
Hardware|x86-64 |x86
OS|other |Linux
--
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.