http://bugs.winehq.org/show_bug.cgi?id=25023
Summary: StoneQuest crashes without d3dx9_25 that is supplied
Product: Wine
Version: 1.3.6
Platform: x86
URL: http://www.brothersoft.com/games/stonequest.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=31719)
--> (http://bugs.winehq.org/attachment.cgi?id=31719)
~/wine-git/wine StoneQuest.exe &> log.txt
This bug right now only affects purists at the moment.
With d3dx9_25 or d3dx9_36 is a very slow.
--
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=16371
Summary: Evernote treeview icons black
Product: Wine
Version: 1.1.10
Platform: Other
URL: http://www.evernote.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Evernote installs and starts fine. However, the treeview on
the left of the main screen has black icons instead of the
expected + and - signs.
Tried a few native DLLs (cc580, gdiplus) but that didn't change anything.
--
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=21440
Summary: Teamviewer: crashes before starting remote connection
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johannespfeiffer(a)netnexus.de
Created an attachment (id=25817)
--> (http://bugs.winehq.org/attachment.cgi?id=25817)
console output
Used Teamviewer 5.0.7687 downloaded from there:
http://www.teamviewer.com/de/download/index.aspx
wine TeamViewer_Setup.exe
Choose "start" instead of "install" and click next (doing an install crashes
the app after it is installed and started too)
check the license box and click next
the app crashes
--
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=25063
Summary: _pclose should wait for the command processor to
terminate and return it's exit status
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: borut.razem(a)gmail.com
_pclose should close the the stream, wait for the command processor to
terminate and return it's exit status, but it just closes the the stream and
returns whatever MSVCRT_fclose() returns.
Borut
--
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=20699
Summary: Something wrong with WH_GETMESSAGE hook (TeamViewer)
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
TeamViewer 3 with OS=NT4.0 to workaround bug 12067
All seems to work (except for the unrelated bug 11727) but the chat the other
windows seems to loop (when a connection is active) when many input messages
are sent on this windows (for example when you press 2 or more keys on the
chat). Obviously in windows there aren't problems.
To workaround this in then dlls/user32/message.c
...
break;
case MSG_HARDWARE:
if (size >= sizeof(msg_data->hardware))
{
...
HOOK_CallHooks( WH_GETMESSAGE, HC_ACTION, flags & PM_REMOVE, (LPARAM)msg,
TRUE );
return TRUE;
}
...
I add this check (or you can remove the whole call...)
...
if (flags & PM_REMOVE) <-
HOOK_CallHooks( WH_GETMESSAGE, HC_ACTION, flags & PM_REMOVE, (LPARAM)msg, TRUE
...
and now there aren't problems and it works very well.
I know the patch isn't right, since the WH_GETMESSAGE should return also the
not removed peeked messages but I think there is something wrong with the
hooking system!
Note:
To understand what Teamviewer do I have followed the source code VNCHooks.dll
'cause it's very similar (also with the name and meanings of the registerd
messages).
--
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=15672
Summary: getpagesize() is deprecated, sysconf(_SC_PAGE_SIZE)
should be used instead
Product: Wine
Version: 1.1.6
Platform: All
OS/Version: Linux
Status: NEW
Keywords: patch, source
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=16732)
--> (http://bugs.winehq.org/attachment.cgi?id=16732)
Patch replacing getpagesize() with sysconf(_SC_PAGE_SIZE)
Tried compiling Wine with the Linux Standard Base SDK (Beta 4), which works
fine, using the following script:
#!/bin/sh
set -ex
PATH=/opt/lsb/bin:$PATH
CC=lsbcc
CXX=lsbc++
LSBCC_SHAREDLIBS=wine
export CC
export CXX
export LSBCC_SHAREDLIBS
./configure
make clean
make depend
make
Though you may need to use the following to work around another bug, according
to an old report (didn't verify):
make depend LDFLAGS=-ldl
make LDFLAGS=-ldl CFLAGS="-g -O2 \"-DRTLD_DEFAULT=((void *)0)\" -DMAP_FILE=0"
Once you've done that, try compiling. You'll get a few warnings :-P. First one:
lsbcc -c -I. -I. -I../../include -I../../include -D__WINESRC__
-DWINE_UNICODE_API="" -D_REENTRANT -fPIC -Wall -pipe -fno-strength-reduce
-fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings
-Wpointer-arith -Werror -o loader.o loader.c
cc1: warnings being treated as errors
loader.c: In function ‘map_dll’:
loader.c:333: warning: ‘getpagesize’ is deprecated (declared at
/opt/lsb/include/unistd.h:420)
make[2]: *** [loader.o] Error 1
make[2]: Leaving directory `/home/austin/wine-git/libs/wine'
make[1]: *** [wine] Error 2
make[1]: Leaving directory `/home/austin/wine-git/libs'
make: *** [libs] Error 2
I've patched most of them, but didn't touch the configure stuff, wasn't sure
how to handle it. Seems like Alexandre's area of expertise...
These are the areas that I didn't look at:
include/wine/port.h:#ifndef HAVE_GETPAGESIZE
include/wine/port.h:size_t getpagesize(void);
include/wine/port.h:#endif /* HAVE_GETPAGESIZE */
include/wine/port.h:#define getpagesize ___WINE_NOT_PORTABLE(getpagesize)
libs/port/getpagesize.c: * getpagesize function
libs/port/getpagesize.c:#ifndef HAVE_GETPAGESIZE
libs/port/getpagesize.c:size_t getpagesize(void)
libs/port/getpagesize.c:#endif /* HAVE_GETPAGESIZE */
server/mapping.c:# ifdef HAVE_GETPAGESIZE
server/mapping.c: page_size = getpagesize();
Though should give someone who wants to fix it somewhere to start.
--
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=28743
Bug #: 28743
Summary: Pathologic fails to start: 'Error creating renderer'
Product: Wine
Version: 1.3.30
Platform: x86
URL: http://www.fileplanet.com/162269/160000/fileinfo/Patho
logic-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Classification: Unclassified
Regression SHA1: 4365d2905c6d1b5f530b077bec0d152e327be23b
Created attachment 36926
--> http://bugs.winehq.org/attachment.cgi?id=36926
plain terminal output
The game shows an error message right after started, saying 'Error creating
renderer'. Pressing on the <Ok> button launches the game configuration utility.
Pressing on <Cancel> quits the game. Thus the game is unable to start.
The game starts correctly up until this commit:
4365d2905c6d1b5f530b077bec0d152e327be23b is the first bad commit
commit 4365d2905c6d1b5f530b077bec0d152e327be23b
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Sep 27 09:17:18 2011 -0500
d3d9: Remove the palette implementation methods.
:040000 040000 df2948ddf8d1215e8278e3375244b8adf7a6211d
8b95a8e0e4e7524170ba43bc2ffe369359b9811d M dlls
The patch cannot be reverted on wine-1.3.30-145-g7a4349b (compilation of the
source ended with errors), but
git checkout 4365d2905c6d1b5f530b077bec0d152e327be23b >> the game errors out
git reset --hard HEAD^ >> the game starts correctly
Steps to reproduce the problem in the demo:
1. Install the demo as usual. The game requires the following native
components: wmp9 quartz devenum. You can install them via winetricks (actually,
the error message appears well before the intro video).
2. Run the game by executing ../Buka/Pathologic Demo/bin/Final/Game.exe. On the
first launch the config utility will appear; you don't need to change anything,
just press on <Ok>... here comes the trouble: 'Error creating renderer'.
Let me know if you need a log with debug channels enabled.
Fedora 15 x86
Nvidia 250 / driver 280.13
X.Org X Server 1.10.4
--
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=26941
Summary: No tab shown under treelist on CSPRO 4
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iip.umar.rifai(a)gmail.com
No tab shown under treelist
How to test:
1. download cspro here http://www.census.gov/ipc/www/cspro/download/cspro40.exe
2. Run Cspro 4.0 program
3. Open file/application, goto examples/capi
4. You could see that there are not tab list shown on the bottom.
Attached are screenshoot from windows and wine.
Maybe this bug also related with comctl32...but I'm not 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.
http://bugs.winehq.org/show_bug.cgi?id=28715
Bug #: 28715
Summary: msvcrt/locale.ok triggers unintialised read in
MSVCRT__create_locale
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Use of uninitialised value of size 4
at wine_cp_mbstowcs (mbtowc.c:200)
by MultiByteToWideChar (locale.c:1920)
by LCMapStringA (locale.c:2632)
by MSVCRT__create_locale (locale.c:831)
by MSVCRT_setlocale (locale.c:1124)
by func_locale (locale.c:110)
by run_test (test.h:556)
by main (test.h:624)
Uninitialised value was created by a client request
at RtlAllocateHeap (heap.c:208)
by MSVCRT_malloc (heap.c:312)
by MSVCRT__create_locale (locale.c:794)
by MSVCRT_setlocale (locale.c:1124)
by func_locale (locale.c:110)
by run_test (test.h:556)
by main (test.h:624)
--
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=23568
Summary: Foobar2000: Cannot play audio files
Product: Wine
Version: 1.2-rc6
Platform: x86-64
URL: http://www.foobar2000.org/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=29453)
--> (http://bugs.winehq.org/attachment.cgi?id=29453)
console output when starting Foobar2000 and trying to play an mp3
Play any mp3 file, notice a dialog window with the title "Playback error" and
the content "Unrecoverable playback error: Unknown error code (0x80070057)"
appears.
Foobar2000 v1.0
--
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=27156
Summary: Bioshock demo: mouse jumps around menu
Product: Wine
Version: 1.3.20
Platform: x86
URL: http://www.gamershell.com/download_20697.shtml
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: julliard(a)winehq.org
Regression from 1.3.19:
fd4ad5a60433b8314dce684b9d52f43769cd5867 is the first bad commit
commit fd4ad5a60433b8314dce684b9d52f43769cd5867
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri May 13 12:40:19 2011 +0200
winex11: Don't use raw events for button events so that we get the right
coordinates.
:040000 040000 d046b97119984a1e2a0591144ff6ed2bc15e3ea4
465eb2f383428394793525fde1d7f7934da0d08a M dlls
the option in winecfg to allow fullscreen windows to grab the mouse makes no
difference.
You can use the custom argument '-nointro' to skip the intro videos and get
straight to the menu.
--
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=24491
Summary: AIM Crashes on Start
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: harmonh(a)gmail.com
AIM - AOL Instant Messenger
Seems to setup okay but starting gets a program error message and it fails to
start.
--
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=27707
Summary: Invisible cars in GTAIV when ARB shaders are used
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
See screenshot: http://i.imgur.com/sXEQb.jpg
Steps to reproduce:
1. Get GTAIV running in WINE
2. Set HKCU/Software/Wine/Direct3D/UseGLSL to "disabled"
3. Start GTAIV and see the bug.
Some cars are visible, and this is usually when they get some damage after a
collision.
When GLSL is used, this bug doesn't appear.
(If you wonder why I'm trying all this, ARB shaders appear to compile somewhat
faster, thus reducing some delays in game).
--
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=28174
Summary: winecfg: audio settings don't take effect until
winecfg is closed
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Start up winecfg, and test your sound. Assuming it works, pick some broken
settings (e.g., OSS instead of alsa for me). Test sound, still works. Close
winecfg, restart it. Test sound, test will fail. Enabling ALSA at this point
won't fix sound until winecfg is restarted.
Makes sound testing a bit annoying, especially if you don't know to do it :).
--
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=25871
Summary: netstat command missing (needed by Guild Wars 'test
system' button)
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Guild wars installs nicely, but if you press 'test system', you see
...
wine: cannot find L"C:\\windows\\system32\\netstat.exe"
--
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=27627
Summary: Alpha Polaris demo wants d3dx9_36.dll.D3DXFileCreate
(purist)
Product: Wine
Version: 1.3.23
Platform: x86
URL: http://www.gamershell.com/download_75822.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
Bundles native d3dx9_34.dll. Remove it, and game crashes with:
wine: Call from 0x7b83ad72 to unimplemented function
d3dx9_36.dll.D3DXFileCreate, aborting
--
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=18738
Summary: Fallout 3: Configuration combobox empty
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=21487)
--> (http://bugs.winehq.org/attachment.cgi?id=21487)
Empty combobox
I'm using Wine 1.1.22 (compiled from source using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386.
The problem is that configuration combobox is empty when trying to configure
Fallout 3. Attachment speaks for itself. The problem is solved using native
comctl32.dll There is nothing specific in terminal.
--
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=29848
Bug #: 29848
Summary: Installer of GLWorld 2011 beta3 crash while "I agree"
button is clicking
Product: Wine
Version: 1.4-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
Created attachment 38771
--> http://bugs.winehq.org/attachment.cgi?id=38771
Log: GLWorld 2011 beta3 crash while "I agree" button is clicking
1. Download GLWorld_2011beta3 :
http://counter.ourgame.com/CounterPage.ashx?id=4234&d=gldl_hall_gl2010 (from
http://www.ourgame.com/download/ )
2. open GLWorld_2011beta3.exe with wine:
$ wine GLWorld_2011beta3_0112.exe
3. click "I agree"/"我同意"
crash, will attach full log.
--
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=21332
Summary: Grand theft auto San andreas keyboard stop working on
1.1.136
Product: Wine
Version: 1.1.36
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kickasskilla(a)gmail.com
As summary after having installed version 1.1.36 I can't get the keyboard
working.
If I have nautilus underneath it i can see the quicksearch box with the keys i
type
I'll provide further infos asap
--
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=23872
Summary: Steam: All windows will reopen after being closed
Product: Wine
Version: 1.2
Platform: x86
URL: http://steampowered.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: twunknown(a)gmail.com
When a steam window is closed it will instantly reopen itself
This happens on the main window and all other windows including the friends
browser and chat 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=23112
Summary: flash player install crashes
Product: Wine
Version: 1.2-rc2
Platform: x86-64
URL: http://fpdownload.macromedia.com/get/flashplayer/curre
nt/install_flash_player_ax.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=28726)
--> (http://bugs.winehq.org/attachment.cgi?id=28726)
terminal output
Running winetrickstest today, I noticed that the flash sha1sum changed. Updated
to the latest, but it crashes on launch.
Terminal 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.
http://bugs.winehq.org/show_bug.cgi?id=9765
Summary: iTunes 7.4.2 can't connect to the iTunes music store
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://apple.com/itunes/download/
OS/Version: All
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: wine-crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juan_lang(a)yahoo.com
Created an attachment (id=8197)
--> (http://bugs.winehq.org/attachment.cgi?id=8197)
Error dialog
Install iTunes 7.4.2. Ignore the error during installation, and run 'wine
c:\\Program\ Files\\iTunes\\iTunes.exe". When the dialog comes up warning that
system components that iTunes needs are missing and corrupted, press Continue.
Finally the main iTunes window appears, but complains that it can't connect to
the iTunes music store, showing the attached dialog.
The suspicious entry in the console is:
fixme:crypt:CertVerifyCertificateChainPolicy unimplemented for 4
4 is CERT_CHAIN_POLICY_SSL in wincrypt.h.
--
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=26440
Summary: unimplemented function WS2_32.dll.GetNameInfoW
Product: Wine
Version: 1.3.15
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alessandro(a)perucchi.org
I'm running an IBM application, a client called "Content Manager OnDemand
Client V. 8.5".
It works pretty well, at least in the previous version, and since the version
8.5.
I cannot connect to the server, because it has at least one function missing
from the Wine Implementation of WS2_32.dll.
The only log I have is the one in the summary.
I have tested it in Wine 1.3.14, but by looking at the source code of 1.3.15,
the missing function... is still missing.
If you need more info, please don't hesitate to contact me.
(I use Fedora 13 64bits in an Intel Proc Dual Core)
Cheers,
Alessandro
PS: I hope the Severity is correctly set, I was hesitating between
"Normal/Enhancement"...
--
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=26273
Summary: Sims 3 can't detect disc
Product: Wine
Version: 1.3.14
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Even though I have D: and D:: symlinked to /media/Sims3 and /dev/sr0,
and verified that InstallSource was set to d:\\ in the app's registry,
it still won't recognize the disc.
According to
http://www.snootysims.com/forums/viewtopic.php?f=34&t=30012
Sims 3 uses a snippet of Securom code to check for the disc.
--
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=19429
Summary: WideCharToMultiByte: Incorrect conversion of "default
character"
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dee(a)bowfive.oag.co.jp
Created an attachment (id=22553)
--> (http://bugs.winehq.org/attachment.cgi?id=22553)
The C program which can reproduce the problem
I found that WideCharToMultiByte() converts "default character" incorrectly in
932 (Japanese SHIFT-JIS) code page.
Attached C program can reproduce the problem (The binary attached is compiled
using Borland C++ Compiler 5.5.1).
On Windows XP Professional(32bit,SP3,Japanese), it produces following output
(and is what I expect):
Y:\dbcstest>test
0123?456789
On Wine 1.1.26 running on Ubuntu Jaunty(9.04) x86_64, it produces:
$ wine test.exe
0123$$456789
--
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=18386
Summary: fr-019_poemtoahorse: Resolution isn't returned to normal
after demo closes
Product: Wine
Version: 1.1.20
Platform: PC-x86-64
URL: http://www.pouet.net/prod.php?which=5569
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roothorick(a)new.rr.com
As the title says. After it closes the resolution is left at what the demo was
running at instead of returning to the user's selected desktop resolution.
--
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=30211
Bug #: 30211
Summary: TradeManager 2011 SP2 crashed on startup
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felixonmars(a)gmail.com
Classification: Unclassified
Created attachment 39436
--> http://bugs.winehq.org/attachment.cgi?id=39436
Log
Crashed on startup, no window showed up.
--
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=17006
Summary: setlocale to "en_us.UTF8" succeeds under wine, fails
with native, causes knock-on failures
Product: Wine
Version: 1.1.13
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
here's a python program which, when run under wine, succeeds
when using native msvcrt, and fails using native, but for very
odd reasons (attached).
note the setting of locale (equivalent in c to setlocale(LC_TYPE,
"en_US.UTF-8")?
well, with native msvcrt.dll, that fails - the locale doesn't exist.
so, the test is skipped.
but under wine, it proceeds... and then wine fails to do the right things!
in other words, it _does_ identify 0xa0 as a space (true), it _does_
identify 0xc0 as alpha, and a number, and upper.
the next tests, which depend on 0xa0 being _not_ identified as space,
then obviously fail as well.
so the question is: strictly speaking, setlocale("en_US.UTF-8") shouldn't
be going ahead in the first place, but if it does, should these tests
work as expected?
wossgoinon? :)
--
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=29426
Bug #: 29426
Summary: UDF support: VOLUME_GetSuperblockSerial invalid for
some volume types
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq.org(a)mcfang.com
Classification: Unclassified
VOLUME_GetSuperblockSerial returns an incorrect serial for certain UDF volumes.
Volume types affected:
* ISO9660+UDF for all revisions: Serial displays as '0104-0001'
* UDF revision 2.50/2.60: Serial displays as '0000-0000'
Serial is correct for standalone UDF revisions 1.02/1.50/2.00/2.01
Test Case: Run 'wine cmd' to open the command line and observe the output of
the `vol` command. Output differs from `vol` run on a native windows system for
the above volume types.
History: UDF support was introduced as a patch for bug #26273
http://bugs.winehq.org/show_bug.cgi?id=26273 and is hardcoded to use the 257th
sector (Address 526336) for serial calculation.
The actual sector used for serial calculations depends on the UDF revision and
volume type. I suspect the sector may be coded somewhere in the UDF
Specifications, and if that is the case then it should be a better solution
than hardcoding.
Serial calculations:
* Sector 257 for UDF revisions 1.02/1.50/2.00/2.01
* Sector 260 for ISO9660+UDF revisions 1.02/1.50/2.00/2.01
* Sector 320 for UDF revisions 2.50/2.60 with or without ISO9660
--
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=22856
Summary: Runes of Magic 3.0.x: crashes at startup
Product: Wine
Version: 1.2-rc1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florianmattner(a)online.de
Wine crashes when I open the Client.exe
Wine says that the ClientUpdater.exe has been crashed.
--
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=25717
Summary: Japanese fonts sometimes shifted to the left
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: galtgendo(a)o2.pl
Created an attachment (id=32764)
--> (http://bugs.winehq.org/attachment.cgi?id=32764)
output with WINEDEBUG=+font
After I set up new set of font overrides (first app I encountered, that was
looking up MSPGothic by its Japanese name), I ran into a strange effect.
While fonts in menus were rendered correctly (well, AFAICT), glyphs in other
places were shifted a bit to the left, as shown on the screenshot.
Attaching log from WINEDEBUG=+font first.
--
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=24621
Summary: Slow UI and toolbar redraw in SolidWorks
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: denis.bonnenfant(a)diderot.org
In SolidWorks, toolbars are organized in tabs, displayed contextually depending
on actions ( sketching, 3D functions... ).
Left panel displays a tree view, or functions properties.
toolbars :
Manual switching between tabs works normally, no slowdown, but sometimes tabs
are drawn outside of the application window, at the top left of the screen,
just below system bar (see screenshot). Moving windows erases this.
When tab switching is initiated by another operation, the refresh logic is not
good : first, toolbar is displayed, but then it is redrawn very slowly (1-2s,
left to right). This operation slows down all the UI, resulting in a very
unpleasant lag for user (icons can't be selected during redraw)
Left panel (property manager) :
It contain collapsable areas, containing different dialog boxes ( see
screenshot ).
On any updates, left panel is first displayed correctly and quite fastly. But
then titles of collapsable boxes and some graphic areas are erased very slowly
(1-2s, left to right) (see screenshot). This operation slows down all the UI,
resulting in a very unpleasant lag for user too
--
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=19465
Summary: _mktime64 does not work with time/dates after 2038
Product: Wine
Version: 1.1.26
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spencercw(a)googlemail.com
Created an attachment (id=22617)
--> (http://bugs.winehq.org/attachment.cgi?id=22617)
Sample program showing the bug
A simple example program is attached. Any attempt to use _mktime64 with a date
after ~2038 (i.e., any date that would require a 64-bit timestamp) returns -1
in Wine, but works ok in Windows (the example program shows 29348006400, tested
WinXP 32 and Win7 64, cross compiled mingw32 4.4.0).
Since there doesn't appear to be any way to force UNIX mktime to return a
64-bit value, I suspect the only work-around for this would be to re-implement
mktime in Wine.
--
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=25808
Summary: shdocvw:ie tests crash on x64 and clang
Product: Wine
Version: 1.3.11
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=32883)
--> (http://bugs.winehq.org/attachment.cgi?id=32883)
clang output
Clang:
../../../tools/runtest -q -P wine -M shdocvw.dll -T ../../.. -p
shdocvw_test.exe.so ie.c && touch ie.ok
wine: Unhandled page fault on write access to 0x00000028 at address 0x6821ce56
(thread 0039), starting debugger...
Unhandled exception: page fault on write access to 0x00000028 in 32-bit code
(0x6821ce56).
wine64:
fixme:storage:create_storagefile Storage share mode not implemented.
tmarshal.c:1735: PSFacBuf_CreateProxy: Assertion `sizeof(TMAsmProxy) == 16'
failed.
wine: Assertion failed at address 0x2b3a3663bba5 (thread 0009), starting
debugger...
Unhandled exception: assertion failed in 64-bit code (0x00002b3a3663bba5).
I'll attach logs for both.
--
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=17031
Summary: popen not connecting to stdin / stdout correctly
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
same command run as wine c:/mingw/bin/windres.exe _does_ work, but when run
from /bin/sh.exe in msys, it fails.
$ windres.exe --input python_dll.rc --output python_dll.res
--output-format=coff
c:\mingw\bin\windres.exe: can't popen `c:\mingw\bin\gcc -E -xc -DRC_INVOKED
python_dll.rc': Bad file descriptor
this is related to http://bugs.winehq.org/show_bug.cgi?id=16968
which is a slightly more complex test but still involving popen
(ultimately).
on 1.0.1, there was no question that this was an out-and-out failure:
however, under 1.1.13, #16968 seemed to succeed.
so it would appear that things have simply got... a little bit faster,
in 1.1.13, so it "seems" that the problem has "gone away", but
it hasn'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.
http://bugs.winehq.org/show_bug.cgi?id=25828
Summary: oleaut32:tmarshal tests fail on clang
Product: Wine
Version: 1.3.11
Platform: x86
URL: http://test.winehq.org/data/98834637eb25caf986c9feae3e
aa0b855cc19a26/wine_ae-ub1004-clang/oleaut32:tmarshal.
html
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Unhandled exception: page fault on read access to 0x00000003 in 32-bit code
(0x7ea7497f).
winedbg: Internal crash at 0x7ec81e4d
test failed: crash
attached a debug log with relay,seh,tid and all ole debug channels, let me know
if more targeted traces would help.
--
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=27404
Summary: Zeq2Msvcrt needs msvcr90.dll._crt_debugger_hook
Product: Wine
Version: 1.3.21
Platform: x86-64
URL: http://zeq2.com/lite/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
svn co -r 1526 http://zeq2.com/SVN/Build/
...
$ wine ZEQ2Msvc.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC90.CRT" (9.0.21022.8)
fixme:wgl:X11DRV_wglChoosePixelFormatARB unused pfAttribFList
wine: Call from 0x7b83b2f2 to unimplemented function
msvcr90.dll._crt_debugger_hook, aborting
wine: Unimplemented function msvcr90.dll._crt_debugger_hook called at address
0x7b83b2f2 (thread 0009), starting debugger...
--
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=19921
Summary: NetObjects Fusion, fatal error
Product: Wine
Version: 1.1.28
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sunrise.xxl(a)web.de
CC: sunrise.xxl(a)web.de
Hello,
I was able to install NetObjects Fusion 7.5 (for creating a website). It runs
under WinXP with no problems, alas not under wine...
I tried looking for an existing bug, but I really haven't a clue what terms to
search for. Sorry if this is a duplicate and sorry, my English not the best...
NOF can be started, but when I want to create a new site or open an existing
site created under Windows (site_name.nod), I got a "fatal error", the program
freezes.
Before doing this all I copied all the necessary files from Windows into .wine
tail -f /var/log/messages shows no results.
By starting in a terminal I got the attached results (see the pdf).
My OP is Ubuntu 8.04 LTS.
--
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=14898
Summary: Delphi 6 Personal Edition will not install.
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mentalnotes314(a)gmail.com
Created an attachment (id=15469)
--> (http://bugs.winehq.org/attachment.cgi?id=15469)
Error messages on console
Delphi 6 Personal Edition will not install. Upon entering a valid license key
it shows the following Message Box: "The serial number or authorization key is
invalid. Please check these values and enter them exactly as printed on the
label of the CD jacket." Testing results are here:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=813&iTestingId…
--
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=15817
Summary: King's Bounty : The Legend crashes/freezes when loading
fight sequences
Product: Wine
Version: 1.1.7
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ergo14(a)gmail.com
The game crashes/freezes randomly when unit approaches to enemy army and fight
sequence loading screen is present, sometimes the fight loads sometimes the app
crashes.
these two bug reports also state the problem is present
http://appdb.winehq.org/objectManager.php?sClass=version&iId=13954http://appdb.winehq.org/objectManager.php?sClass=version&iId=11999
without that "small" problem the game would be gold/platinum
--
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=30030
Bug #: 30030
Summary: LuxMark 2.0 crashes under wine
Product: Wine
Version: 1.4-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Created attachment 39113
--> http://bugs.winehq.org/attachment.cgi?id=39113
backtrace with symbol info
BT 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=22489
Summary: Stonegiant demo doesn't run, needs d3d11
Product: Wine
Version: 1.1.43
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
There was some splash recently about a new game engine's benchmark,
http://www.examiner.com/x-3707-DLC-Examiner~y2010m4d24-Stone-Giant-DirectX-…http://www.bitsquid.se/downloads/download.htmlhttp://www.bitsquid.se/news_press%20releases.html
so I installed it to see how it would break under Wine. Here's the startup
log:
err:module:import_dll Library d3d11.dll (which is needed by L"C:\\Program
Files\\Stone Giant\\exe\\stone_giant.exe") not found
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT" (8.0.50727.762)
err:module:import_dll Library MSVCP80.dll (which is needed by L"C:\\Program
Files\\Stone Giant\\exe\\nvtt.dll") not found
err:module:import_dll Library nvtt.dll (which is needed by L"C:\\Program
Files\\Stone Giant\\exe\\stone_giant.exe") not found
Had to select Vista in winecfg to get it to install, too.
--
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=26755
Summary: wineboot crashes on start when cabinet.dll is compiled
with clang
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=34077)
--> (http://bugs.winehq.org/attachment.cgi?id=34077)
backtrace
This is part 2 of bug 26754
wineboot crashes on start, without a backtrace, but it doesn't seem fatal.
Running wineboot a second time works, and notepad/etc. work. The culprit is
cabinet.dll, using one compiled with gcc works fine. I've attached the
backtrace from running make -k test for cabinet.dll.
+relay works around this as well.
--
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=29918
Bug #: 29918
Summary: LibreOffice fonts antialiasing is wrong under Wine
Product: Wine
Version: 1.4-rc3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Created attachment 38928
--> http://bugs.winehq.org/attachment.cgi?id=38928
LibreOffice 3.5 fonts antialiasing under Wine 1.4-rc3
It seems like LibreOffice doesn't want to use system wide fonts antialiasing
under Wine.
See the attached screenshot.
--
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=30200
Bug #: 30200
Summary: Writing 00x integers instead of 0x
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cadcapricorn(a)hotmail.com
Classification: Unclassified
On Wine 1.4, ArcView 3.3 writes in textual .apr file hex enumerations in the
form 00xNNN instead of 0xNNNN. No error while saving, but later it cannot open
it again. Opening error is:
ERROR Can't convert characters in h:\proj1.apr at position 1947 to an integer.
------------------- TRACEBACK -------------------------
Module "AVFile" Message 4: file ".\err.c " line 645
Module "ODB " Message 1: file "..\avfile\odb.c" line 871
Module "ODB " Message -1: file "..\avfile\odb.c" line 1249
Module "ODB " Message -1: file "..\avfile\odb.c" line 1387
Module "CBlok" Message -1: file "..\avenue\cblok.c" line 1552
Module "CBlok" Message -1: file "..\avenue\cblok.c" line 1552
Module "Script" Message -1: file "..\avenue\script.c" line 151
Module "Err " Message -1: file ".\err.c " line 2009
------------------------------------------------------
FATAL ERROR aborted from error window
I had no such a problem with Wine 1.2.3
--
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=10138
Summary: exec* function family expands * and ?
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pclouds(a)gmail.com
This is the output from running "you.exe" in XP:
0001: I
0002: call
0003: me.exe
0004: you.exe
FYI the directory contains only you.exe and me.exe
Here is the output from wine-0.9.42-278-gf40bdba
0001: I
0002: call
0003: *
Sources of you.exe and me.exe follow
--
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=24413
Summary: Window/menu painting issues running Firefox 4.0
Windows 32-bit nightly
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: msclrhd(a)gmail.com
http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/firefox…
1. Install firefox -- this completes succesfully
2. Run firefox/minefield
On the "Default Browser" message box that appears, several painting artefacts
can happen:
a. the dialog content flips upside down;
b. the dialog content gets rendered black (except the checkbox for some
reason);
when:
a. moving over the content area; or
b. selecting the checkbox.
This also happens with the menu when moving from menu to menu:
a. sometimes each menu item is displaying its text upside down;
b. sometimes the popup menu gets rendered black.
--
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=27386
Summary: Atari800Win PLus 4.0: crashes before window appears
Product: Wine
Version: 1.2.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pomiot(a)wp.pl
Created an attachment (id=35011)
--> (http://bugs.winehq.org/attachment.cgi?id=35011)
Log from wine 1.2.3 running atari800win
Atari800Win PLus 4.0 - atari xl/xe series emulator - crashes just after start,
before window appears.
Message "fixme:d3d_caps:select_card_intel_mesa Card selection not handled for
Mesa Intel driver" can be found in attached log file.
Previous version of Wine (1.2.2) works fine - application was 100% usable, no
problems found
--
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.