http://bugs.winehq.org/show_bug.cgi?id=4332
------- Additional Comments From tuharsky(a)misbb.sk 2006-18-01 05:57 -------
Well, from that section, I would be still not wise enough to know, that "CUPS
library" means libcupsys2-dev (developement package). I would assume that
libcupsys should be enough.
The description for other services is the same problem for me -Do I need
developement libraries of all of them to make them work?
It should be stated clearly, that it is DEVELOPEMENT libraries what we need. And
there should be still mention in Wine User's guide, that to enable the
particular services (CUPS, ALSA,...) one must look into the
documentation/PACKAGING, section DEVELOPEMENT, to find out, what libraries
should take place before compilation.
You know, those things can be totally clear for developers, but for the user
they aren't. I have compiled some applications from source before, but without
clear explanation in some visible place of README, I wouldn't know, what else I
do need to accomplish.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4180
------- Additional Comments From keri24601(a)yahoo.com 2006-18-01 05:03 -------
I updated my cvs 01-17-2006, and I still have the same problem. Even with
"111", but my serial doesn't start with 111.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-18-01 02:42 -------
Rather strang that you don't get the dialobox about the audiosetup.After that i
too get the "splash screen" with the tabs ((About, Restrictions, Purchase,
Support, Various). When i dismiss it , the app seems to work just fine. Do you
use current cvs? (I do). BTW Another way to get the dialogbox before the
splashscreen is to uncheck the checkbox "Allow the windowmanager to control
windows" under the Graphics tab in winecfg, and just run the app in fullscreen
(no virtual Desktop) You might try if it changes something (but i doubt))
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4336
Summary: winecfg fails on audio-tab
Product: Wine
Version: 0.9.5.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phobieweb(a)yahoo.de
When I start winecfg and click on Audio, it crashes.
I killed the process after waiting some minutes...
(phobie@NYX) {/} $ LANG="C" LANGUAGE="C" winecfg
ALSA lib seq_hw.c:455:(snd_seq_hw_open) open /dev/snd/seq failed: No such file
or directory
*** glibc detected *** free(): invalid pointer: 0x7c037058 ***
wine: Assertion failed at address 0xb7e2d7a7 (thread 0014), starting debugger...
Getötet
(phobie@NYX) {/} $
On debian/sid (libc6 2.3.5-12, wine 0.9.5-winehq-1)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4325
------- Additional Comments From Aric.Cyr(a)gmail.com 2006-17-01 21:36 -------
Created an attachment (id=1706)
--> (http://bugs.winehq.org/attachment.cgi?id=1706&action=view)
Add floatint point texture formats
I don't know if this is going to help, but please try the attached patch. The
patch was made against wine-0.9.5. I haven't tested it at all, but it may
allow you to get a little farther. This is really a semi-hack, so unless it
helps you out, I don't plan on submitting it to wine-patches.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony.lambregts(a)gmail.com 2006-17-01 20:37 -------
Try setting the windows version to emulate to 98 (Wine now defaults to windows
2000) so that may be the change.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4291
------- Additional Comments From mike(a)codeweavers.com 2006-17-01 20:35 -------
Hi You-Cheng,
If this is a regression, please try a regression analysis as described by:
http://winehq.org/site/docs/winedev-guide/x1344
or using git (on the wine Wiki's GITWine page).
You might want to check that you weren't using a comctl32 from windows before
you start doing that.
thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4335
Summary: _tempnam does not check for the environment variable TMP
Product: Wine
Version: 0.9.5.
Platform: Other
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sascha93101(a)yahoo.com
_tempnam should follow the rules described here:
http://msdn2.microsoft.com/en-us/library/hs3e7355.aspx
When the Microsoft linker links an executable using a resource file, it calls
_tempnam to get a name for a temporary files. Since TMP is ignored, the linker
gets back the name "/lnk**.tmp". In most cases, the user running linker doesn't
and shouldn't have write permissions in the root directory, and the linker
fails.
The fixed code is here:
char *_tempnam(const char *dir, const char *prefix)
{
char tmpbuf[MAX_PATH];
char save_TMP[MAX_PATH];
const char *tmp_dir = dir;
if (GetEnvironmentVariableA("TMP",save_TMP,sizeof(save_TMP)))
{
tmp_dir = save_TMP;
}
TRACE("dir (%s) prefix (%s)\n",tmp_dir,prefix);
if (GetTempFileNameA(tmp_dir,prefix,0,tmpbuf))
{
TRACE("got name (%s)\n",tmpbuf);
DeleteFileA(tmpbuf);
return _strdup(tmpbuf);
}
TRACE("failed (%ld)\n",GetLastError());
return NULL;
}
I'll send it to wine-patches(a)winehq.org too.
Also, http://bugs.winehq.org/show_bug.cgi?id=1652 could be another
manifestation of this bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4291
yochenhsieh(a)xuite.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |critical
Priority|P2 |P1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From markknecht(a)gmail.com 2006-17-01 19:28 -------
Since I'm having so much trouble with the Reaktor 5 demo I decided to pull back
to the original CD of Reaktor / Reaktor Session that I originally posted this
thread about. The install again worked, as it did with other versions of Wine,
but with the recent CVS version of Wine I now get an error dialog box stating
'Error WK1117 - WBUKEY.SYS not installed' when I try to run Reaktor Session.
Presumably this is something Reaktor is used to seeing and for whatever reason
is there on earlier versions of Wine but is no longer there. Why?
Anyway, I'll work on the Reaktor 5 demo and see if we can get it working and
then upgrade to Reaktor 5 when we get there. (I hope!)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4327
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-misc |wine-ole
------- Additional Comments From mike(a)codeweavers.com 2006-17-01 19:27 -------
Try updating to the latest CVS version and test with that. OLE is improving
quickly, and didn't work a few weeks ago may work now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From markknecht(a)gmail.com 2006-17-01 18:34 -------
OK, I tried setting it up in a virtual desktop. Now the splash screen I'm seeing
is at least not stuck on all four Gnome work spaces. That's an improvement.
However I am now seeing two splash screens. One splash screen is stuck at the
front of my virtual desktop. There is a second splash screen with some tabs
(About, Restrictions, Purchase, Support, Various) that was in back but I can
bring it to the front of the other splash screen. I Cannot find an easy way to
dismiss this other than hit the small 'x' in the upper right. When I do that I
get a black virtual desktop for about 3 second and then the whole thing goes
away and I'm back in the terminal.
Thanks for the hint on the virtual desktop. That seems helpful. I did not get
any messages about setting up audio. To be very sure I completely erased my
.wine directory and reinstalled from scratch. No messages like that. I tried
running winecfg and setting an audio driver. That didn't seem to help either. I
still get two splash screens, and when I dismiss the one the whole app goes away.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3752
------- Additional Comments From mstefani(a)redhat.com 2006-17-01 18:06 -------
Running both programs with oleaut32=n (the only native DLL used) both programs
start up and create their component (electronics components) files and wait for
user input. Didn't try to use them to see how they behave.
With builtin oleaut32 i have done a +variant trace and the "runtime error" is
more than probably due to this call:
trace:variant:VariantChangeTypeEx
(0x7e336808->(VT_ERROR),0x7fa0f790->(VT_ERROR),0x00000400,0x0000,VT_VARIANT).
VariantChangeTypeEx correctly sanctions this with a 0x80020005 aka
DISP_E_TYPEMISMATCH.
Now the question is why 0x7fa0f790 variant is a VT_ERROR. Nothing in the
+variant trace. I'll have to dig deeper into this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1889
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-17-01 17:42 -------
The copy-protection part fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4334
Bug 4334 depends on bug 1889, which changed state.
Bug 1889 Summary: copy protection of Bearshare 4.3.3 crashes wine
http://bugs.winehq.org/show_bug.cgi?id=1889
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4334
Summary: Bearshare 4.3.3 crashes in StretchDIBits
Product: Wine
Version: CVS
Platform: PC
URL: http://appdb.winehq.org/appview.php?appId=1304
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P3
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vitaliy(a)kievinfo.com
BugsThisDependsOn: 1889
Crashing for me on:
0009:Call
gdi32.StretchDIBits(00006498,00000000,00000000,000001f4,0000000f,00000000,00000000,000001f4,0000000f,04bf41f0,42605bd0,00000000,00cc0020)
ret=0073808b
where 0x04bf41f0 is bogus address. Making a special case for that address in
StretchDIBits makes it pass that place. But crashes right after I get to the
main window (focus changes to the main window).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1889
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |4334
nThis| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3752
------- Additional Comments From mstefani(a)redhat.com 2006-17-01 17:25 -------
_copy_arg() was removed a couple of days ago so i tried the programs out. They
still fail, the error is now:
err:ole:ITypeInfo_fnInvoke failed to convert param 0 to VT_VARIANT|VT_BYREF from
VT_ERROR
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4216
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-17-01 17:13 -------
Hi Ivan, i just tried the demo (again) but it works fine here with current cvs.
Does it still fail with you?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3262
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-17-01 16:47 -------
Resolving fixed then
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1434
Bug 1434 depends on bug 3262, which changed state.
Bug 3262 Summary: Doom 3 fails to install (crashes with backtrace) [MSI]
http://bugs.winehq.org/show_bug.cgi?id=3262
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2480
------- Additional Comments From mstefani(a)redhat.com 2006-17-01 16:28 -------
Can you please retest with latest CVS? I reimplemented VarCmp()
(http://source.winehq.org/git/?p=wine.git;a=commit;h=f73b68b0169bc8b53993329…)
the most probable cause of the "Automation error".
The line
fixme:variant:VarCmp VarCmp partial implementation, doesn't support vt 0x8 / 0x2
was the hint. VarCmp() supports now all input variants that WinXP supports too.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3262
------- Additional Comments From alex(a)thehandofagony.com 2006-17-01 16:16 -------
Works in CVS; I installed the contents from disc 1 successfully. By the way,
the demo uses Installer Wise, while the full game uses InstallShield, so the
demo is not relevant for this bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4328
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, regression
Summary|Zuma Deluxe demo doesn't |Zuma Deluxe demo doesn't
|work anymore (it did with |work anymore (it did with
|0.9.1, regression) |0.9.1, regression)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4327
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4325
cppcreater(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |enhancement
Summary|Initialize Renderer Failed, |Initialize Renderer Failed,
|DirectX |support for directx9 is
| |nonexistent at the moment
------- Additional Comments From cppcreater(a)yahoo.com 2006-17-01 16:09 -------
Ok, the debugger points out the problem.
fixme:d3d:IWineD3DImpl_GetDeviceCaps Caps support for directx9 is nonexistent at
the moment!
trace:d3d:IWineD3DImpl_Release (0x675684b8) : Releasing from 1
fixme:d3d:IWineD3DImpl_GetDeviceCaps Caps support for directx9 is nonexistent at
the moment!
fixme:d3d:IWineD3DImpl_CheckDeviceMultiSampleType Quality levels unsupported at
present
:(
Need for Speed Underground, World of Warcraft, and maybe a couple others are
also effected by this. I might try loading native dx9 dlls but I dobt this game
will work until wine impliments directX9.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4263
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-17-01 15:55 -------
So resolving as fixed then.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3180
------- Additional Comments From alex(a)thehandofagony.com 2006-17-01 15:53 -------
Command & Conquer starts fine if you set the Windows version to win98.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-17-01 15:44 -------
Hi Mark, about the splash issue: run the app in a virtual Desktop (i.e.1024x768
) the you'll see there's a kind of dialog box behind it that you have to answer
first (about sound configuration) When you do that , the app seems to start up
fine. I can't see any menu issues. Can you check too?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4333
Summary: GoogleEarth: crash in usp10
Product: Wine
Version: CVS
Platform: PC
URL: http://kh.google.com/download/earth/index.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
GoogleEarth pops up a messagebox saying it encountered a problem and needs to
close. Using native usp10.dll makes it work fine, so the problem must be in there.
As there are _a_ lot of messages in the console i'll post them as an attachment
hereafter. Steps to reproduce the bug:
1. Set version to XP using winecfg
2. Install GoogleEarth from the website above
3. Copy Arial.TTF into ~./wine/drive_c/windows/fonts (otherwise no text)
4. Run GoogleEarth
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4092
CaptainSifff(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From CaptainSifff(a)gmx.de 2006-17-01 15:11 -------
This seems to be fixed as James Hawkins implemented ExtractFiles on Jan. 11 .
It now installs fine.
There's one last Fixme:
fixme:setupapi:extract_cabinet_file awful hack: extracting cabinet "Y:
\\Decker.cab"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3329
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-17-01 15:10 -------
An update on this: the ole error seems to be fixed, as i can get it running
without using native ole32. Also native msvcrt isn't needn't anymore. It still
needs native usp10 to start fine. I'll close this one and open a new one to
reflect the changes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3467
------- Additional Comments From anderson(a)sonic2000.org 2006-17-01 14:42 -------
Created an attachment (id=1703)
--> (http://bugs.winehq.org/attachment.cgi?id=1703&action=view)
warn+ddraw,trace+ddraw
Tested with Wine 0.9.5 (Gentoo Ebuild: Wine-0.9.5-r1)
WINEDEBUG="warn+ddraw,trace+ddraw"
Still gives the same DDRAW Error
warn:ddraw:Main_DirectDrawSurface_Lock - unsupported locking flag :
DDLOCK_NOSYSLOCK
Debug log included (cut of after error occoured a few times)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=911
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-17-01 14:42 -------
Resolving Fixed
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4329
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.bistudio.com/resi
| |stance/depository.html
Keywords| |download, NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4268
------- Additional Comments From michal.okresa(a)ifne.sk 2006-17-01 13:08 -------
And to make it complete, space before printer name in customized printing dialog
is still present.
(mayby small bug in ISS?)
--
Michal
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4159
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |brodigan(a)pdx.edu
------- Additional Comments From vitaliy(a)kievinfo.com 2006-17-01 12:39 -------
*** Bug 4331 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4331
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2006-17-01 12:39 -------
Known regression that's fixed in CVS.
*** This bug has been marked as a duplicate of 4159 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2400
------- Additional Comments From alexsander.rosa(a)gmail.com 2006-17-01 11:41 -------
I'm using 0.9.5 with a brazilian keyboard (pt_br abnt2) on Kubuntu 5.10 and
Debian 3.1 - both are having this issue, the Delete key becomes "comma" with
NumLock On and we can't just turn off NumLock because we need to type numbers a lot.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4268
------- Additional Comments From michal.okresa(a)ifne.sk 2006-17-01 11:14 -------
Hi,
I have tried wine_cvs (20060117) on 'alien' test machine.
Now I am able to change printer in ISS/VFP9 without problem. This behaviour
occures with nt40 emulation-with builtin comdlg32.dll or win2000,winxp
emulation-with native comdlg32.dll.
But printing is still unsuccessful. The output are correct lines but all letters
are missing.
--
Michal
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4332
------- Additional Comments From hans(a)it.vu.nl 2006-17-01 10:51 -------
Have a look at the section called "DEPENDENCIES" in the file
documentation/PACKAGING.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4318
------- Additional Comments From roli8200(a)yahoo.de 2006-17-01 09:54 -------
There are no german umlauts at all on SuSE 10 not only on Corel Draw. I just
tried it with SQLyog (a small mysql admin utility for windows which uses rtf)
and IE 6sp2 on wine. On all programs none of them allows to type the german
umlauts.
May it be a "missing headerfile or lib" issue?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4318
------- Additional Comments From roli8200(a)yahoo.de 2006-17-01 09:49 -------
As currently tested, this happens mainly on SuSE 10. I compiled the wine 0.9.5
with the user.dll patch on Fedora 4 and got the umlauts. Can
If possible can somebody give me a hint about the possible reason for this. This
is a bit importand for me because i formatted my last windows machine on Dec.
25, 2005 so I'm really depending on this functions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4314
------- Additional Comments From roli8200(a)yahoo.de 2006-17-01 09:47 -------
Its not fully clear to me whats the exact impact to Corel Draw 9. I made some
testing and found out that it may be have a effect to the text routine.
As seen on http://www.winehq.com/hypermail/wine-devel/2004/04/0281.html the
requested class by this id may be general Corel application routine class becaus
in this bug mail about Corel Office, which is a completly diffrent software, is
it already described.
I also found out that Corel 9 have a very very strange text problem on SuSE 10
with wine 0.9.x. It's impossible to type german umlauts (äöü). But I could not
figure out if this problem has something to do with it. I tried 0.9.3, 0.9.4 and
0.9.5. If possible can somebody give me a hint about the possible reason for
this. This is a bit importand for me because i formatted my last windows machine
on Dec. 25, 2005 so I'm really depending on this functions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From markknecht(a)gmail.com 2006-17-01 08:20 -------
OK, I downloaded a demo of Reaktor 5 and installed it on an Intel P4HT machine
using Wine from CVS this morning. (1/17/06) It installed fine but the splash
screen won't dismiss so I cannot get to the Reaktor menus yet to see if it's the
same problem.
NOTE: There was NO .wine directory on this machine before running the install of
Reaktor.
1) I used the English version of the demo from this location:
ttp://www.nativeinstruments.de/index.php?id=demoversions_us
2) After unzipping it I ran the installer. I unchecked options 2, 3 and 4. I
only attempted to install the stand-alone program, not the VST, DXi or RTAS
versions. Here's what I saw in my install terminal:
mark@dragonfly ~/Downloads $ wine Reaktor\ 5\ Demo\ Setup.exe
fixme:advapi:GetFileSecurityW (L"T:\\GLF1044.tmp") : returns fake
SECURITY_DESCRIPTOR
fixme:advapi:GetFileSecurityW (L"T:\\GLF1053.tmp") : returns fake
SECURITY_DESCRIPTOR
fixme:shell:IShellLinkA_fnGetPath (0x7fd44a80): WIN32_FIND_DATA is not yet filled.
err:menubuilder:ExtractFromICO Invalid ico file format
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
fixme:shell:IShellLinkA_fnGetPath (0x7fd85668): WIN32_FIND_DATA is not yet filled.
err:menubuilder:extract_icon32 LoadLibraryExW (L"C:\\Program Files\\Native
Instruments\\Reaktor 5 Demo\\Documentation\\Welcome.pdf") failed, error 193
err:menubuilder:ExtractFromICO Invalid ico file format
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
fixme:shell:IShellLinkA_fnGetPath (0x7fd85668): WIN32_FIND_DATA is not yet filled.
err:menubuilder:extract_icon32 LoadLibraryExW (L"C:\\Program Files\\Native
Instruments\\Reaktor 5 Demo\\Documentation\\REAKTOR 5 Demo Tutorial.pdf")
failed, error 193
err:menubuilder:ExtractFromICO Invalid ico file format
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
fixme:shell:IShellLinkA_fnGetPath (0x7c76a0b8): WIN32_FIND_DATA is not yet filled.
err:menubuilder:extract_icon32 LoadLibraryExW (L"C:\\Program Files\\Native
Instruments\\Reaktor 5 Demo\\Documentation\\Core Tutorial.pdf") failed, error 193
err:menubuilder:ExtractFromICO Invalid ico file format
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
mark@dragonfly ~/Downloads $
The install finished cleanly as far as I could tell.
3) I started the program like this:
mark@dragonfly ~ $ cd .wine/drive_c/Programme/Native\ Instruments/Reaktor\ 5\ Demo
mark@dragonfly ~/.wine/drive_c/Programme/Native Instruments/Reaktor 5 Demo $ ls -al
total 17988
drwxr-xr-x 6 mark users 4096 Jan 17 06:02 .
drwxr-xr-x 3 mark users 4096 Jan 17 06:02 ..
drwxr-xr-x 2 mark users 4096 Jan 17 06:02 Core Tutorial Examples
drwxr-xr-x 2 mark users 4096 Jan 17 06:02 Documentation
-rw-r--r-- 1 mark users 65835 Jan 17 06:02 INSTALL.LOG
drwxr-xr-x 8 mark users 4096 Jan 17 06:02 Library
-rw-r--r-- 1 mark users 9535 Jun 17 2005 New.ens
-rwxr-xr-x 1 mark users 18112512 Jun 20 2005 Reaktor5Demo.exe
-rwxr-xr-x 1 mark users 165376 Nov 5 2001 UNWISE.EXE
drwxr-xr-x 3 mark users 4096 Jan 17 06:02 html
mark@dragonfly ~/.wine/drive_c/Programme/Native Instruments/Reaktor 5 Demo $
wine Reaktor5Demo.exe mark@dragonfly ~/.wine/drive_c/Programme/Native
Instruments/Reaktor 5 Demo $
Reaktor starts cleanly but the splash screen won't dismiss. The splash screen
shows up on ALL Gnome desktops! I hit Ctrl-C in the original terminal tp get out.
NOTE: The first time I did this I got messages about needing to run winecfg and
choose emulation under the Audio tab which I did. Here ae the messages:
mark@dragonfly ~/.wine/drive_c/Programme/Native Instruments/Reaktor 5 Demo $ win
e Reaktor5Demo.exe
err:wave:DSDB_MapBuffer Could not map sound device for direct access (Input/outp
ut error)
err:wave:DSDB_MapBuffer Please run winecfg, open "Audio" page and set
"Hardware Acceleration" to "Emulation".
Considering: firefox
argv[1]: http://www.native-instruments.com/r5demohome.info
mark@dragonfly
If we can figure out the splash issues then we can probably move forward.
Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4332
Summary: Wine User's Guide -incomplete information about
compilation
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tuharsky(a)misbb.sk
Hallo,
the paragraph that describes installing Wine from source should be more verbose.
For example, during bug reporting process I have been told, that in order to
enable CUPS support in compiled Wine, the libcupsys2-dev package should be
installed in system. There is no mention in documentation about such needs, and
.configure has complained only about missing x11-dev libraries, that I have
resolved quickly.
I think, printing is such a notorious thing when You use computer, so that any
steps necessarry to gain this kind of functionality should be mentioned in the
Guide.
I have no deeper knowledge, what are the other such dependencies. For example, I
don't know whether it is necessarry to install some packages to get sound
working in compiled Wine etc.
So please, if there are some dependencies like the libcupsys2-dev one, can
somebody competent create a neat table and insert it to the User's Guide,
chapter discussing the compilation?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From us(a)edmeades.me.uk 2006-17-01 06:50 -------
I used the v5 demo as per the Additional Comment #2 line, and cant get it to
start. I tried playing with the sound configuration just in case, but I think
its related to a code protection scheme because it dies with illegal
instruction very early on.
Please try a build from cvs or perhaps the most recent release, as there were
fixes to the menu code which have solved 2 or 3 of the reported bad menu
issues, plus a patch to improve the diagnostics. Then if the problem persists,
get a WINEDEBUG=+menu wine pgmname >menutrace.log 2>&1 output to see what it
shows.
If there is a demo version I can install in wine which I can run and shows the
problem it would be much easier!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4294
------- Additional Comments From tuharsky(a)misbb.sk 2006-17-01 05:22 -------
Regression testing done.
2005-08-19 08:58:30 CDT OK
2005-08-19 08:58:45 CDT ERR (bitmap and several buttons crippled)
In this timeframe, there is CVS record 017655 and patch 19672. I'll contact the
author of patch..
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4331
Summary: wine-0.9.5 fails to properly initiate install shield
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brodigan(a)pdx.edu
While trying to install 3d demos from www.nzone.com Wine's Install Shield will
begin to initialize then freeze. A top of the process stats shows that
wine-preloader is taking up +90% of the cpu.
Reproduced with Tron 2.0 demo and Luna demo.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4291
yochenhsieh(a)xuite.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |major
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4283
------- Additional Comments From jeremielapuree(a)yahoo.fr 2006-16-01 21:37 -------
Maybe, /usr/local/bin is not in your PATH???
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4103
------- Additional Comments From 0x0007(a)gmail.com 2006-16-01 20:22 -------
Oni is known to crash on new systems. Could you try patching it with this [1]
and see if that helps? Note that this is not an official patch, use it on your
own risk.
Oni is also famous for crashes related to DirectSound. Please try different Wine
sound drivers. OSS seems to work best.
[1] http://oni.bungie.org/files/apps/Unofficial_Oni_Patch.zip
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4283
ericsbinaryworld(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|WORKSFORME |
------- Additional Comments From ericsbinaryworld(a)gmail.com 2006-16-01 19:51 -------
but it doesn't work for me.
[emesa@short-e windows]$ ls
command notepad.exe rundll32.exe system.ini winebrowser.exe win.ini
fonts profiles system temp winhelp.exe
inf regedit.exe system32 uninstall.exe winhlp32.exe
[emesa@short-e windows]$ wine notepad.exe
wine: cannot find 'notepad.exe'
[emesa@short-e windows]$ wine "notepad.exe"
wine: cannot find 'notepad.exe'
[emesa@short-e windows]$
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4330
Summary: Installshield fails with error 0x0040706
Product: Wine
Version: 0.9.2.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mpatton(a)jhu.edu
When I try to install bg2, it fails with:
Error number: 0x004076
Description: Object reference not set
There are a couple closed bugs describing the same issue, but it the problem was
never fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4009
------- Additional Comments From cihan(a)uq.edu.au 2006-16-01 19:09 -------
I had been looking into that too. In case it is of any help: You can actually
play the game, ie. only the menus don't show up. Try to find the "Quick Game"
button with your mouse to start up a game which works as in native.
When I last investigated I thought it might be the missing 'SetPalette'
implementation but that's a while back.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4306
super-greg(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From super-greg(a)gmx.de 2006-16-01 17:26 -------
patch comitted to cvs
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4263
------- Additional Comments From rob(a)codeweavers.com 2006-16-01 17:08 -------
Please do a "git pull" and retest. The described debug error message should be
fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4081
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-01 16:54 -------
It could be already fixed. Michael Jung sent few patches in that have fixed
"simple PIDL's only". So I gess we need to wait for author to retest with latest
cvs/wait for wine-0.9.6
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4180
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-01 16:09 -------
Works for me with current cvs. Author please retest with last cvs and try to use
small numbers like "111". It could be the text too big to fit and edit box
doesn't scrool.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4283
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-01 15:59 -------
Never seen this with propperly installed or even from the source tree Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3294
------- Additional Comments From alan(a)dominux.co.uk 2006-16-01 15:55 -------
I used the workaround listed
WINEDLLOVERRIDES="usp10=n" wine notes.exe
that gets it a bit further, past the the initial opening sequence. It throws up
the following error about every second:
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
and after about a minute of this the following errors pop through:
err:win:DefWindowProcW called for other process window 0x10020
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nlnotes.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nnotesws.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nnotes.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nxmlproc.pdb'
fixme:dbghelp:sffip_cb NIY on 'msvcp71.pdb'
fixme:dbghelp:sffip_cb NIY on 'msvcr71.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\js32.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nlsccstr.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\ndgts.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nplugins.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nstrings.pdb'
fixme:dbghelp:sffip_cb NIY on 'usp10.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\namhook.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\ntcp.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nstclientu.pdb'
fixme:dbghelp:sffip_cb NIY on 'mfc71u.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nimuiu.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nimuires.pdb'
fixme:dbghelp:sffip_cb NIY on 'g:\build\bin\w32\bin\nntcp.pdb'
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
err:win:DefWindowProcW called for other process window 0x10020
then it is back to the once per second errors.
When I try to open a local database (so not across the network) the following
error happens and the application freezes:
Process ID 10 has been reused, application may require restarting if
OSLoadProgram was not used (41728)
I hope this is of some use, I would like to know how to be more helpful.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4329
Summary: Operation Flashpoint Resistance: "Cannot reserve virtual
memory (128MB)"
Product: Wine
Version: 0.9.5.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mike(a)mikearthur.co.uk
When running Operation Flashpoint: Resistance, the configuration window runs
fine, but, regardless of memory settings/availability, the program fails and
just says "Cannot reserve virtual memory (128MB)" in a Windows error box.
There are no errors in the console, and other programs produce errors (such as
missing DLLs), so errors are turned on.
Tried multiple versions of Windows in winecfg, no avail.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4009
------- Additional Comments From alex(a)thehandofagony.com 2006-16-01 15:50 -------
>From 54MB to 400kB - I should have thought of that! :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
us(a)edmeades.me.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |us(a)edmeades.me.uk
------- Additional Comments From us(a)edmeades.me.uk 2006-16-01 15:47 -------
I was going to take a look at this, but it dies immediately on running in
current cvs for me with an illegal instruction. Did you have to do anything
special to run this and can you confirm the problem still persists with a
build from at least the middle of January (to pick up some menu specific
changes)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4009
------- Additional Comments From lionel.ulmer(a)free.fr 2006-16-01 15:27 -------
Well, you can always try to bzip2 it, it should reduce to a manageable size :-)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4081
------- Additional Comments From martin-fuchs(a)gmx.net 2006-16-01 15:06 -------
Sorry, I don't know what's the problem here. If you could debug Photoshop and
see what exactly happens that causes it not to start properly, may be we could
narrow down the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4236
------- Additional Comments From wine-bugzilla(a)thequod.de 2006-16-01 15:02 -------
I have the same problem, since either 0.9.4 or 0.9.5, currently using the
package from Ubuntu (Dapper), but the same problem appeared with the .deb from
winehq.
During startup on console:
$ wine "C:\Program Files\Beyond Compare 2\BC2.exe"
fixme:system:SystemParametersInfoW Unimplemented action: 95
(SPI_GETSNAPTODEFBUTTON)
err:ole:CoGetClassObject class {00bb2763-6a77-11d0-a535-00c04fd7d062} not
registered
err:ole:create_server class {00bb2763-6a77-11d0-a535-00c04fd7d062} not
registered
fixme:ole:CoCreateInstance no classfactory created for CLSID
{00bb2763-6a77-11d0-a535-00c04fd7d062}, hres is 0x80040154
Everytime I open a top menu entry ("dropdown list");
fixme:system:SystemParametersInfoW Unimplemented action: 4098
(SPI_GETMENUANIMATION)
I'll attach a screenshot of the problem. If I could produce anymore debug
output I'd be happy to provide it. Just ask.. ;)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
X-Bugzilla-Reason: AssignedTo
http://bugs.winehq.org/show_bug.cgi?id=4328
Summary: Zuma Deluxe demo doesn't work anymore (it did with
0.9.1, regression)
Product: Wine
Version: 0.9.5.
Platform: Other
URL: http://www.download-free-games.com/puzzle_game_download/zuma.htm
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marius.andreiana(a)gmail.com
The demo installs ok, but running
wine Zuma.exe
doesn't output anything and returns the prompt.
The demo used to work with wine 0.9.1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4327
Summary: MSReader doesn't install
Product: Wine
Version: 0.9.5.
Platform: Other
URL: http://www.microsoft.com/reader/downloads/pc.asp
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marius.andreiana(a)gmail.com
Installer halts and terminal shows
fixme:ole:ITypeInfo_fnRelease destroy child objects
err:ole:marshal_object object doesn't expose interface
{be6115a1-7de5-48dc-ad2a-25060e00fce2}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
err:ole:marshal_object object doesn't expose interface
{be6115a1-7de5-48dc-ad2a-25060e00fce2}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
I've removed ~/.wine/ and let wine re-create it with 0.9.5
Bug #752 indicates this might be a regression?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4009
------- Additional Comments From alex(a)thehandofagony.com 2006-16-01 14:16 -------
The +ddraw log is a monster weighing 54.4MB, with no reference to verticalblank.
I can upload the log to another server if anyone's interested in looking at it.
Is there anything special I should look after?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4250
pgr(a)arcelectronicsinc.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-16-01 14:11 -------
fixed in CVS
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4081
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-01 14:11 -------
Martin any news on this one?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3420
us(a)edmeades.me.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From us(a)edmeades.me.uk 2006-16-01 14:05 -------
Resolved in cvs by http://www.winehq.org/pipermail/wine-cvs/2006-
January/020061.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4004
us(a)edmeades.me.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From us(a)edmeades.me.uk 2006-16-01 14:02 -------
Fixed in CVS - http://www.winehq.org/pipermail/wine-cvs/2006-
January/020061.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4326
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From alex(a)thehandofagony.com 2006-16-01 13:56 -------
An entry in .wine/dosdevices for d: was missing, though I don't undertand why
the other files were copied anyway.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4292
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-01 13:35 -------
This bug has nothing to do with winecfg. And there is no mensioning of the
actual application author tries to run.
You can not copy ole32.dll from windows. At best you can install dcom9x.
Marking as invalid - as suspected operator's error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4326
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
OS/Version|other |Linux
Platform|Other |PC
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4326
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://wormsarmageddon.team1
| |7.com/main.html?page=good&ar
| |ea=demo
Keywords| |download
------- Additional Comments From tony.lambregts(a)gmail.com 2006-16-01 13:14 -------
Demo Available here:
http://wormsarmageddon.team17.com/main.html?page=good&area=demo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4326
Summary: CVS regression: Worms Armageddon program file is not
installed
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
When installing Worms Armageddon with current CVS, the program file, 'wa.exe',
is not installed by the setup program. This worked fine in Wine 0.9.5. There
are no error messages on the console.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4325
Summary: Initialize Renderer Failed, DirectX
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
URL: http://appdb.winehq.org/appview.php?versionId=4036
OS/Version: Linux
Status: NEW
Severity: major
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cppcreater(a)yahoo.com
Civilization 4 seems to be working great, however it cant start because of
"err:d3d:IWineD3DImpl_IsGLXFBConfigCompatibleWithRenderFmt unsupported format"
Here is the output: http://1veedo.homelinux.com/misc/civlog.bz2 ...lots of those
errors all the way through.
A window also pops up saying "Initialize Renderer Failed"
http://1veedo.homelinux.com/misc/screenshots/civstart2.png
I found this error at the Civ4 site,
http://forums.civfanatics.com/showthread.php?t=135019#2
According to them, "Make sure that when you installed the game, you installed
the version of directX that shipped with the game. This has some extra files
over and above the "normal" runtime version of DirectX 9.0c. <i>It is critical
that you install this</i>. You can either reinstall Civ4, or you can browse the
installation CD for the DirectX folder, and run DXSetup.exe from it."
I actually tried to install DirectX (yeah, I know...) however it complains "A
cabinet file necessary for installation cannot be trusted." This is probably a
bug of its own. In fact the transgamming site claims that installing the
DirectX from the CD will make it run. (
http://transgaming.org/forum/viewtopic.php?t=4277&postdays=0&postorder=asc&…
) I have a feelling wine's directX just isn't recognising what the program wants
it to do. Things like WINED3DFMT_A4R4G4B4, WINED3DFMT_X4R4G4B4 etc may even
perform the same function as other calls that do work, meaning you'd just have
to alias them. Heh. I don't know. This is the CVS from 14 Jan evening.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.