http://bugs.winehq.org/show_bug.cgi?id=26471
Summary: Free FLV Converter: Fails to start
Product: Wine
Version: 1.3.15
Platform: x86
URL: http://www.koyotesoft.com/appli/Setup_FreeFlvConverter
.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
CC: eric.pouech(a)orange.fr
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) install Free FLV Converter 6.8 without any additions
4) wine FreeFLVConverter.exe
Behaviour:
Wine error.
Expected Behaviour:
Application should start
Additional info:
I use Fedora 14 32-bit and regression test did give
a575351b3019ad86628c8325af62920b75c5d2a4 is the first bad commit
commit a575351b3019ad86628c8325af62920b75c5d2a4
Author: Eric Pouech <eric.pouech(a)orange.fr>
Date: Tue Mar 8 21:31:20 2011 +0100
dbghelp: Add support for parsing methods (in C++ classes) for dwarf debug
format.
:040000 040000 96ea6c3be315eba310399138df3588275752e02d
faa14dd6c70c2c52c7ce302a87f620bb41a675a7 M dlls
--
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=26086
Summary: TurboTax 2011: initial setup screen is mostly gray
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: Installer
Severity: trivial
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=33269)
--> (http://bugs.winehq.org/attachment.cgi?id=33269)
+gdiplus trace
Terminal shows:
fixme:gdiplus:GdipCreateBitmapFromHBITMAP no support for device-dependent
bitmaps
so I tried native gdiplus, which sure enough got me a nice splash screen.
+gdiplus 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=26175
Summary: Theme internals on 64 bit enters infinite loop after
crash
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
See attachment.
After crash, explorer.exe doesn't spew a backtrace; dbghelp enters an infinite
loop.
--
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=19434
Summary: ActiveState ActiveTcl installer fail to install due to
path write permission
Product: Wine
Version: 1.1.19
Platform: PC
URL: http://www.activestate.com/activetcl/downloads/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max.bra(a)alice.it
Created an attachment (id=22562)
--> (http://bugs.winehq.org/attachment.cgi?id=22562)
standard winedebug stdout log
ActiveState ActiveTcl 8.xx installer fail to install due to path write
permission problem.
i see this behaviour since wine 1.1.19. same on 1.1.26.
any combination of 'c:\Tcl' or 'c:/directory/Tcl' does not solve.
does not matter if target directory exist or not.
--
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=24301
Summary: ICO parsing improvements
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: windowscodecs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: damjan.jov(a)gmail.com
Created an attachment (id=30625)
--> (http://bugs.winehq.org/attachment.cgi?id=30625)
Sample icons
While doing some research on ICO files for another open source project, I
uncovered quite a few problems and missing features in Wine's windowscodecs
implementation:
* ICONDIRENTRY is not meant to be used for parsing the image data, only the
BITMAPINFOHEADER is used. In fact, the ICONDIRENTRY can contain total rubbish,
and Windows still parses the ICO file fine (as determined by Windows Explorer's
thumbnail). Chances are Windows only uses ICONDIRENTRY when selecting the
"best" icon for a particular screen bit depth, and further decoding is only
done via the BITMAPINFOHEADER.
* BITMAPINFOHEADER only exists for BMP images, there is also (starting with
Windows Vista) PNG instead.
* Only BITMAPINFOHEADER of size 40 bytes seems supported, neither
BITMAPV4HEADER nor the OS/2 bitmap header work in its place.
* Contrary to Microsoft's documentation, compressed bitmaps are supported. At
least BI_BITFIELDS compression works. It wouldn't surprise me if all other
compressions worked. The best way to implement ICO bitmap decoding thus seems
to be to defer to the BMP decoder.
* ICO files with right-way-up bitmaps (negative biHeight), which Wine's
windowscodecs goes to great lengths to support, seem not to work on Windows in
my limited testing.
* 16 BPP bitmaps, which Wine's windowscodecs doesn't support, are valid in ICO
files.
* The trailing AND mask is optional for 32 BPP bitmaps.
* As a special gotcha, If the bitmap is 32 BPP, and the AND mask is present,
and the alpha channel would make every pixel completely transparent, Windows
ignores the alpha channel and uses only the AND mask to determine transparency.
Real world icons exist that need this
(https://bugzilla.gnome.org/show_bug.cgi?id=609094).
* A palette of size biClrUsed can exist even for > 8 BPP, and specifies the
"optimal viewing palette". It needs to be skipped when decoding such an image.
I am attaching some sample icons that highlight some of these problems.
Most open source ICO parsers (GIMP, Imagemagick, gdk-pixbuf) suffer from many
of these problems, so test only against Windows.
--
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=17971
Summary: GCC optimisations cause workaround for Slingplayer bug
13371 to fail
Product: Wine
Version: 1.1.17
Platform: PC
URL: http://download.slingmedia.com/player/pc/SlingPlayer-
Setup-EU-1.5.1.343.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
The workaround for Bug 13371 is to use native qcap.dll and quartz.dll.
Up to Wine 1.1.16, the workarounds work fine. With 1.1.17 (and 1.1.18) the
workarounds fail (resulting in the same DLL Function Crash error).
While attempting a git bisect I found that the workaround still worked when
using "gcc -O0" to compile, but "gcc -O1" causes the workaround to fail.
Result of bisect with gcc -O1:
7b6dd2c9f8339a0bc14aa7f466f5c5a0bb03da06 is first bad commit
commit 7b6dd2c9f8339a0bc14aa7f466f5c5a0bb03da06
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Mar 11 17:28:21 2009 +0100
ole32: Get rid of WINE_StringFromCLSID and A->W conversions.
:040000 040000 ccd95ffc3e797d4978e121994715610434851ca5
dac4595337bddbc841d737265254e1bc52ccea03 M dlls
Reverting to previous commit allows the workaround to work with optimisations
on.
This is kind of a blocker to Bug 13371 as the pre-compiled .debs from the
WineHQ repository uses -O2 optimisation.
To complete the bisect, I had to move from GCC 4.3.2-1ubuntu12 to GCC 4.3.3 I
compiled myself, as the results were random (GCC bug).
Tested in latest gitwine wine-1.1.18-199-ga9c0c24 and an unhandled exception
occurs with -O1, workaround works with -O0.
--
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=21265
Summary: PCBSD crash handler encountered error while trying to
start bin/wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dalfish(a)ymail.com
PCBSD encountered an error while trying to start bin/wine
captured from stdout:
Captured from stderr:
fixme:win:EnumDisplayDevicesW ((null),0,0x34f6e0,0x00000000), stub!
fixme:msg:ChangeWindowMessageFilter 720 00000001
fixme:msg:ChangeWindowMessageFilter 721 00000001
fixme:msg:ChangeWindowMessageFilter 746 00000001
wine: Call from 0x7e3e8bd6 to unimplemented function
pdh.dll.PdhSetDefaultRealTimeDataSource, aborting
fixme:ole:CoInitializeSecurity (0x0,-1,0x0,0x0,4,3,0x0,0,0x0) - stub!
err:ole:CoGetClassObject class {5c63c1ad-3956-4ff8-8486-40034758315b} not
registered
err:ole:CoGetClassObject class {5c63c1ad-3956-4ff8-8486-40034758315b} not
registered
err:ole:create_server class {5c63c1ad-3956-4ff8-8486-40034758315b} not
registered
fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported
err:ole:CoGetClassObject no class object {5c63c1ad-3956-4ff8-8486-40034758315b}
could be created for context 0x17
--
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=26596
Summary: FTBFS: RTLD_NOW, MessageBoxA, and MB_OK undefined in
JACK_DriverProc()
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xanthraxoid(a)yahoo.co.uk
Building from source using git revision
9ea9a053b9d28cff9ae3aa1d2c684192d1df2e39
I'm not sure how to find the friendlier number of
1.3.16-[somethingorother]-[githash]
I get the same thing on my ubunto 32 bit box (maveric meerkat) and my debian 64
bit box (wheezy - testing)
This is the last part of the build, first from the ubuntu box, then the debian
box - they look the same to me, but there may be important subtleties I'm not
affine to!):
make[1]: Entering directory `/home/sammy/src/wine/wine-git/dlls/winejack.drv'
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
-Wstrict-prototypes -Wtype-limits -Wwrite-strings -Wpointer-arith -g -O2
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 -o audio.o audio.c
audio.c: In function ‘JACK_DriverProc’:
audio.c:2419: error: ‘RTLD_NOW’ undeclared (first use in this function)
audio.c:2419: error: (Each undeclared identifier is reported only once
audio.c:2419: error: for each function it appears in.)
audio.c:2443: warning: implicit declaration of function ‘MessageBoxA’
audio.c:2443: error: ‘MB_OK’ undeclared (first use in this function)
make[1]: *** [audio.o] Error 1
make[1]: Leaving directory `/home/sammy/src/wine/wine-git/dlls/winejack.drv'
make: *** [dlls/winejack.drv] Error 2
make[1]: Entering directory `/home/sammy/src/wine/wine-git/dlls/winejack.drv'
gcc -m32 -c -I. -I. -I../../include -I../../include -D__WINESRC__
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wstrict-prototypes -Wtype-limits -Wwrite-strings
-Wpointer-arith -Wlogical-op -g -O2 -o audio.o audio.c
audio.c: In function 'JACK_DriverProc':
audio.c:2419:50: error: 'RTLD_NOW' undeclared (first use in this function)
audio.c:2419:50: note: each undeclared identifier is reported only once for
each function it appears in
audio.c:2443:5: warning: implicit declaration of function 'MessageBoxA'
audio.c:2443:78: error: 'MB_OK' undeclared (first use in this function)
make[1]: *** [audio.o] Error 1
make[1]: Leaving directory `/home/sammy/src/wine/wine-git/dlls/winejack.drv'
make: *** [dlls/winejack.drv] Error 2
Cheers & God bless
Sam "SammyTheSnake" Penny
--
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=9544
Summary: Semi transparency in .ico files is ignored
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vexorian(a)gmail.com
Created an attachment (id=7917)
--> (http://bugs.winehq.org/attachment.cgi?id=7917)
The top is an application in Wine, the bottom is the same application in
windows XP.
Since windows XP, icons in .ico format support semi transparency. Certain
programs use icons with transparency in their forms, seems Wine does not render
this transparency correctly, some apps look akward:
--
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=4812
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #19 from Alexandre Julliard <julliard(a)winehq.org> 2011-04-01 12:40:30 CDT ---
Closing bugs fixed in 1.3.17.
--
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.