http://bugs.winehq.org/show_bug.cgi?id=6840
------- Additional Comments From towsonu2003(a)gmail.com 2006-07-12 16:47 -------
thanks. I knew about the other bug referenced in appdb, but I had no way of
knowing this was the same.
sorry about pasting the trace. -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=6836
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-07-12 15:29 -------
I know it doesn't on Windows. However, Wine could use that info as a substitute
(because the Windows designers clearly intended that all Windows programs would
show some sort of Microsoft copyright). I'm beginning to think this is too
hackish to consider, though.
--
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=6844
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
Component|wine-programs |wine-misc
------- Additional Comments From vitaliy(a)kievinfo.com 2006-07-12 15:02 -------
You can fake presence of IE with registry:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer]
"Version"="6.0.2800.1106"
However you probably should look at native Linux program for this functionality.
--
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=6844
Summary: eFax messenger will not install
Product: Wine
Version: 0.9.25.
Platform: PC
URL: http://www.efax.com/en/efax/twa/page/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jmaldrich(a)yahoo.com
Attempting to run under Wine, eFax messenger simply will not run. Error message
states "eFax Messenger 4.2 requires Internet Explorer version 5.0 or newer to be
installed on this computer..." It also requires Windows 2000 or later.
I was able to get further using Crossover Office, but even that dies with an
error that it can't access required files.
--
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=6622
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2006-07-12 13:22 -------
alexandre committed a patch that fixes this issue.
I confirmed that XnView failed before and works now.
it will be in 0.9.27.
--
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=6720
------- Additional Comments From the3dfxdude(a)gmail.com 2006-07-12 13:09 -------
Try using ALSA instead of OSS by going to winecfg audio tab.
--
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=6842
------- Additional Comments From juan_lang(a)yahoo.com 2006-07-12 12:51 -------
It would be easier to check your code if you sent it as a patch to wine-devel.
We want to be able to see exactly what you've changed, so the patch format helps
with that.
Some initial feedback:
1. This looks like preprocessor abuse - choose one method (to cache or not to
cache) and propose that.
2. Don't use C++-style comments (no //).
3. You have comments on too many lines - one larger comment before the block
that explain the gist of it could replace a lot of these.
--
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=6836
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From juan_lang(a)yahoo.com 2006-07-12 12:42 -------
The version information doesn't come from the program resources, as you can see
from the Windows screenshots: all the version information is the same, and it's
from shell32's version.
However, I can see your point about szOtherStuff getting cut off; confirming 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=6842
Summary: DrawFocusRect code correction
Product: Wine
Version: 0.9
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.severach(a)spamgourmet.com
Here are the code excerpts for the most correct and fastest implementation of
DrawFocusRect. The performance is not substantially slower with caching disabled
so for simplicity you may not want to implement caching right away.
#define HBR_CACHE (TRUE) // set to TRUE to enable caching, FALSE to disable caching
#if HBR_CACHE
HBRUSH g_hbrushFocus=NULL;
#else
#define g_hbrushFocus hbrushFocus // Define this to disable caching
#endif
// ...
BOOL fResult=FALSE;
#if 1
HBRUSH hbrushOld;
#if !HBR_CACHE
HBRUSH hbrushFocus;
#endif
if (!HBR_CACHE || !g_hbrushFocus) { // caching the pattern allows us to
exactly match the performance of DrawFocusRect().
static const unsigned char
aBitPixels[]={0x55,0,0xAA,0,0x55,0,0xAA,0,0x55,0,0xAA,0,0x55,0,0xAA,0};
HBITMAP hbitmapFocus=CreateBitmap(8,8,1,1,&aBitPixels); // sizes other
than 8x8 are always slower and can be less compatible
g_hbrushFocus=CreatePatternBrush(hbitmapFocus); // SetTextColor/SetBkColor
are what's used here
DeleteBitmap(hbitmapFocus);
}
hbrushOld=SelectObject(hdc,g_hbrushFocus);
if (hbrushOld) {
HRGN hrgnFocus=CreateRectRgn(prc->left,prc->top,prc->right,prc->bottom);
// this can't be cached because every caller has a different size rectangle.
Besides we're already matching the speed of the real DrawFocusRect
HRGN
hrgnInner=CreateRectRgn(prc->left+1,prc->top+1,prc->right-1,prc->bottom-1);
CombineRgn(hrgnFocus,hrgnFocus,hrgnInner,RGN_DIFF);
DeleteRgn(hrgnInner);
SelectObject(hdc,hrgnFocus);
fResult=PatBlt(hdc, prc->left, prc->top, prc->right-prc->left,
prc->bottom-prc->top,PATINVERT); // 4 PatBlt without a clip region are slower
and will not produce the correct right/bottom transitions
DeleteRgn(hrgnFocus);
SelectObject(hdc,hbrushOld);
SelectClipRgn(hdc,NULL);
}
#if !HBR_CACHE
DeleteBrush(hbrushFocus); // for caching this is done in WM_DESTROY
#endif
// ...
#if HBR_CACHE
case WM_DESTROY:
if (g_hbrushFocus) DeleteBrush(g_hbrushFocus); break;
#endif
--
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=5872
------- Additional Comments From markus.amsler(a)oribi.org 2006-07-12 12:02 -------
A patch was applied, which fixes this bug. Can you verify against current GIT
(or next release) and close it?
--
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=6602
------- Additional Comments From zyrom(a)itr.no 2006-07-12 11:01 -------
yes aplying the "undo patch-patch" and aplying the Xset trick works, but only
if the the LANG is "en_US" or "C" i
--
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=6829
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|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=6836
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-07-12 09:59 -------
It doesn't have to look the same, but cutting off szOtherStuff is not
acceptable. I also think it should attempt to provide copyright information
from the program resources.
--
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=6836
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Confusing Windows About |About Box does not have
|Boxes |enough space for custom text
--
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=6836
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |trivial
Version|unspecified |CVS
------- Additional Comments From vitaliy(a)kievinfo.com 2006-07-12 09:46 -------
Wine does not have to look the same as Windows. In most part it's ugly, badly
designed and doesn't have features that most people use on Linux.
--
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
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:25 -------
closing
--
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=2389
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:24 -------
Closing
--
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=1749
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:22 -------
Closing
--
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=1735
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:21 -------
closing
--
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=1734
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:20 -------
Closing
--
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=2525
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:18 -------
Closing
--
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=1966
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:18 -------
Closing
--
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
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 09:17 -------
Closing
--
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=6841
Summary: wine cannot find audio tracks in cdrom devices needed by
some installers
Product: Wine
Version: 0.9.9.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paloseco(a)gmail.com
I bought the POD game (http://www.ubi.com/DE/Games/Info.aspx?pId=903) or
(http://www.gamespot.com/pc/driving/pod/index.html) and it has an audio track
besides from the data track. The game is very old (can be considered as
abandonware) and only is expected to work on win95. I have installed it on winxp
but created various folders and I cannot play.
Then I launched the installer (setup.exe) with wine and the initial menu is
shown. When I hit "Install" a messagebox says that I cannot install it witouth
the cdrom. The cdrom is there and is mounted. Is set as /dev/hdb in winecfg.
Here is the iso format:
FILE "POD2_0.BIN" BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00
TRACK 02 AUDIO
PREGAP 00:02:00
INDEX 01 53:11:57
Running wine 0.9.9 on ubuntu 6.06 LTS.
--
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=6836
matthew.flaschen(a)gatech.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-07-12 08:52 -------
Thanks for pointing me to the MSDN. However, I disagree with your
interpretation. An ordinary reading of one of the about boxes, such as
"Minesweeper about box on Windows" definitely makes it appear that Minesweeper
is copyright Microsoft. You make a good point about the text depending on a
Windows version. However, I think the specification is that it vary based on
the version of the program (e.g. minesweeper), not the version of shell32.dll.
Windows implements it through shell32.dll, but this is only out of convenience,
because it is expected that all programs and dlls will be from the same version
of Windows. Thus, I think Wine should still attempt to show copyright
information for the program; again, this can be done by parsing the resources.
Even if you still disagree on this, there are problems. The look and feel of
the Wine about boxes is radically different from the Windows boxes. There is no
copyright or licensing information for Wine's shell32 either. Instead, there is
a long list of contributors, which makes the Wine box look very different.
Most importantly, the Wine box does not always show the custom text
(szOtherStuff) in full. The window is laid out with insufficient room, so it
was cut off for the Pinball box (and perhaps others)
--
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=4734
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-07-12 03:44 -------
just retested google earth and this bug is not present anymore. Looks like it's
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=52
------- Additional Comments From fgouget(a)codeweavers.com 2006-07-12 03:34 -------
I retested with Xorg 7.1.0 but the result is still essentially the same.
--
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=6792
------- Additional Comments From truiken(a)gmail.com 2006-07-12 02:18 -------
What version of wine are you running?
wine --version
--
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=6792
------- Additional Comments From ozzy_hellos(a)mail.ru 2006-07-12 02:06 -------
ie6setup can't download setup files. inseng.dll is registered
my log:
ozzy@ozz ~/Progz $ wineboot
ozzy@ozz ~/Progz $ wine ie6setup.exe
fixme:advpack:NeedReboot (0): stub
err:storage:Storage32Impl_SmallBlocksToBigBlocks conversion failed: resRead =
0x8003001e, resWrite = 0x00000000
fixme:wininet:CommitUrlCacheEntryInternal entry already in cache - don't know
what to do!
fixme:wininet:FindFirstUrlCacheEntryA ("Z:\\home\\ozzy\\Progz\\ie6setup.exe",
0x19f5e0, 0x33dcf0): stub
err:ole:CoGetClassObject apartment not initialised
err:ole:CoGetClassObject apartment not initialised
--
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=5557
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |towsonu2003(a)gmail.com
------- Additional Comments From jonathan(a)ernstfamily.ch 2006-07-12 01:04 -------
*** Bug 6840 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=6840
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://sourceforge.net/proje
| |ct/showfiles.php?group_id=95
| |717&package_id=102072
Status|UNCONFIRMED |RESOLVED
Keywords| |download
Resolution| |DUPLICATE
------- Additional Comments From jonathan(a)ernstfamily.ch 2006-07-12 01:04 -------
AppDB: http://appdb.winehq.org/appview.php?iVersionId=5157
Marking Dup.
*** This bug has been marked as a duplicate of 5557 ***
--
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=6840
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|WORKSFORME |
------- Additional Comments From jonathan(a)ernstfamily.ch 2006-07-12 01:03 -------
It is indeed a duplicate of 5557, please check the AppDB (the other bug was
referenced) and Bugzilla next time.
--
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=6819
------- Additional Comments From ale.bol(a)tiscali.it 2006-07-12 01:02 -------
Sorry for the previous post (where I pasted alf of the log!).
--
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=6840
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From jonathan(a)ernstfamily.ch 2006-07-12 01:00 -------
Works just fine here, please upgrade Wine to the current version and retry. If
the bug persists, please reopen the bug (also please _attach_ traces and logs,
don't paste them).
--
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=5669
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:55 -------
http://source.winehq.org/git/wine.git/?a=commit;h=3f91e7529a37e50a48f21c0c3…
Patch in gitResolving FIXED
Clinton Stimpson: Since you are a developer I have given you the ability to edit
bugs...
--
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=1671
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
Keywords|NoAppDBEntry |
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:29 -------
Closing
--
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=1605
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:27 -------
Closing
--
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=1520
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:27 -------
Closing
--
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=1461
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:26 -------
Closing
--
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=1408
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:25 -------
Closing
--
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=1370
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:24 -------
Closing
--
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=1293
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-12 00:22 -------
Closing
--
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=5944
------- Additional Comments From renierm(a)us.ibm.com 2006-07-12 00:18 -------
Workaround: I was having the same problem with wine 1.9.20 and Lotus Notes
7.0.2. I installed dbghelp.dll from windows xp onto
~/.wine/drive_c/windows/system32 and used winecfg to set the dbghelp library as
native.
This solved the problem for me.
I also have oleacc and oleaccrc libraries as native, copied from win xp.
--
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=1233
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:56 -------
Closing
--
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=1202
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:54 -------
closing
--
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=1106
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:49 -------
Closing
--
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=1058
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:47 -------
Closing
--
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=991
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:45 -------
Closing
--
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=972
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:44 -------
Closing
--
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|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:42 -------
Closing
--
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=834
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:41 -------
Closing
--
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=6834
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 23:07 -------
Resolving WorksForMe
--
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=6835
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
Component|wine-multimedia |wine-misc
Keywords| |download, regression
Summary|update wine 9.9 to |Synth1 VST crashes
|9.26...things go 'bump in |
|the night'! |
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-12 23:04 -------
Please run Wine with:
WINEDEBUG=synchronous wine program.exe &> /tmp/wine_log.txt
And attach /tmp/wine_log.txt file to 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=6829
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |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=5669
------- Additional Comments From cjstimpson(a)utwire.net 2006-06-12 22:33 -------
Perhaps the easiest way to get these issues fixed is to fix the code and submit
patches.
I did that and a couple days ago, the fix made it into mainstream code base.
I fixed it in a slightly different way than my last patch.
Other Wine developers that have run PAF before.
I'd mark the bug as fixed, but I don't have permissions to mark it fixed.
FYI, I'm also working on removing the need for a native usp10.dll. I'm pretty
close. Which, AFAIK, is the last thing to make PAF run out of the box on Linux.
--
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=6636
cjstimpson(a)utwire.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From cjstimpson(a)utwire.net 2006-06-12 22:32 -------
This has been fixed in the main code base.
--
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=6819
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 22:31 -------
Please do not PASTE logs and back traces, (attach them instead).
--
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=5669
------- Additional Comments From rm.riches(a)verizon.net 2006-06-12 22:17 -------
Not that I want to be too much of a trouble-maker, but I just noticed that I'm
the only person who has voted for this bug. I would guess if nobody else votes
for it, the fix will probably never be included in the mainstream code base.
So, if anyone else has any votes they can afford to spare, ...
Besides pleading for votes for this bug, what else could be done to make it more
likely that this bug will be fixed?
If it would help, I'd be happy to send and donate a few box-and-CD copies of the
app (PAF) to the Wine developers for testing purposes. The app can be
downloaded for free, and it's available on a CD for only a few dollars.
--
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=5043
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 22:06 -------
Hmm... Wine's uninstall program is called "uninstaller".
did you run uninstaller at the command line?
--
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=6757
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-12 20:13 -------
Closing.
--
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=6757
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-12 20:13 -------
Invalid 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=6839
jbdubbs(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From jbdubbs(a)gmail.com 2006-06-12 19:37 -------
hmmmmm. was reproducible until rebooting the system. Marking invalid.
--
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=6839
Summary: World of Warcraft Patch 2.0.1 Graphical Errors
Product: Wine
Version: 0.9.26.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jbdubbs(a)gmail.com
Severe graphical errors when running WOW patch 2.0.1 (released 12/5 or around
that time) regardless of running OpenGL or DirectX mode. Disabling pixel
shaders fixes problem.
nVidia 6600GT, 8776 drivers, Gentoo Linux.
See attachment for example.
--
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=6838
Summary: 0.9.26 does not check libxml2 version correctly on
configure
Product: Wine
Version: 0.9.26.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mmundy1(a)umbc.edu
I did a config on an older machine (RHEL 3). It configured fine, but during
'make', it complained about a missing lib object in domdoc.o. It turns out my
libxml2 was too old. When I upgraded that it continued building. So it does
not check the version on libxml2 correctly I guess
--
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=6155
------- Additional Comments From sites(a)cheimes.de 2006-06-12 12:17 -------
Rob's IoCompletion patch doesn't apply to 0.9.26. I tried to apply it manually
but I failed.
--
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=6836
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From juan_lang(a)yahoo.com 2006-06-12 10:55 -------
This is by design. The applications call the ShellAbout functions (see
http://msdn2.microsoft.com/en-us/library/ms647731.aspx ) and expect to display a
dialog containing version information about the version of shell32, in addition
to their own version information. shell32 is the Wine one, not the MS one, so
we must display Wine's version information, not the MS version information. See
this text:
"Note that the ShellAbout function dialog box uses text and a default icon that
are specific to either Windows or Windows NT."
Substitue Wine for "either Windows or Windows NT" and you'll see that this is
what we must do.
--
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=5534
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |marcus(a)jet.franken.de
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2006-06-12 10:07 -------
kblin says to close. :)
--
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=6479
morph(a)ngi.it changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |morph(a)ngi.it
--
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=5043
------- Additional Comments From bkline(a)rksystems.com 2006-06-12 08:02 -------
Same behavior on SuSE 10.1 running wine-0.9.11-7, trying to uninstall CVSNT.
Hangs with no error messages.
--
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=6836
matthew.flaschen(a)gatech.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-binary |wine-shell32
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-06-12 06:53 -------
I traced it down to source/dlls/shell32/shell32_main.c, line 937
(http://source.winehq.org/source/dlls/shell32/shell32_main.c#L937).
--
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=6834
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-06-12 04:55 -------
I'm sorry. I forgot to specify the path of the original windows notepad.exe
when attempting to run it. I should have tested off my original comment, which
would have worked. Thanks for the help. I guess I'll upgrade; I was trying to
stick to ubuntu universe but that doesn't really matter.
--
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=6789
tuharsky(a)misbb.sk changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|ISS crashes on opening any |Regression -ISS crashes on
|form |opening any form
------- Additional Comments From tuharsky(a)misbb.sk 2006-06-12 04:50 -------
Thank You. Now I'm able to compile. However, I get this error at the end:
/usr/src/wine-git/dlls/ddraw/surface_dib.c:159: undefined reference to
`DIB_CreateDIBSection'
collect2: ld returned 1 exit status
winegcc: gcc failed.
make[2]: *** [ddraw.dll.so] Error 2
make[2]: Leaving directory `/usr/src/wine-git/dlls/ddraw'
make[1]: *** [ddraw] Error 2
make[1]: Leaving directory `/usr/src/wine-git/dlls'
make: *** [dlls] Error 2
--
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=6834
------- Additional Comments From jonathan(a)ernstfamily.ch 2006-06-12 04:40 -------
- you are using a quite old Wine version, please upgrade (this would fix the
regedit issue you are talking about).
- .exe overrides should be specified with .exe (notepad.exe)
Other than that, I just tried and it works for me.
--
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=6816
------- Additional Comments From dank(a)kegel.com 2006-06-12 04:02 -------
We can't really help unless we can get a copy
of the app. You'll have to become a little
bit of a Wine developer to get this working.
At the very least, we'll need a much better bug report.
--
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=6837
Summary: wpf/e january 2006 preview does not install
Product: Wine
Version: CVS
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyId
=A3E29817-F841-46FC-A1D2-CEDC1ED5C948
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Downloading WPF/E from
http://www.microsoft.com/downloads/details.aspx?FamilyId=A3E29817-F841-46FC…
and installing it with
msiexec /i install.msi
fails; the app says "your OS is not supported".
+msi shows there's probably an msi issue (see the line that
says syntax error):
trace:msi:ACTION_PerformAction Performing action (L"LaunchConditions")
trace:msi:MSI_DatabaseOpenViewW L"SELECT * FROM `ActionText` WHERE `Action` =
'LaunchConditions'" 0x33f9b4
trace:msi:MSI_ParseSQL Parse returned 1
trace:msi:msiobj_release object 0x185658 destroyed
trace:msi:ACTION_LaunchConditions Checking launch conditions
trace:msi:MSI_DatabaseOpenViewW L"SELECT * FROM `LaunchCondition`" 0x33f9d8
trace:msi:MSI_ParseSQL Parse returned 0
trace:msi:MSI_ViewExecute 0x185588 (nil)
trace:msi:MSI_ViewFetch 0x185588 0x33f998
trace:msi:MSI_EvaluateConditionW L"- ( ( (VersionNT = 501 AND ServicePackLevel
>= 2) OR (VersionNT > 501 AND ServicePackLevel >= 1) ) AND (VersionNT < 600) )
OR (OSOVERRIDE = \"yes\")"
trace:msi:COND_GetString Got identifier L"-"
trace:msi:cond_error syntax error
trace:msi:MSI_EvaluateConditionW 3 <- L"- ( ( (VersionNT = 501 AND
ServicePackLevel >= 2) OR (VersionNT > 501 AND ServicePackLevel >= 1) ) AND
(VersionNT < 600) ) OR (OSOVERRIDE = \"yes\")"
trace:msi:MSI_FormatRecordW 0x169610 0x18eb78 (nil) 0
trace:msi:MSI_FormatRecordW (L"Cannot proceed with setup. Your current OS is not
supported. Please visit microsoft.com for \r\n for more information.")
--
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=6831
------- Additional Comments From support(a)softahead.com 2006-06-12 03:48 -------
Hello.
The error related to BeginUpdateResource() happens when the filename of an
executable referring to an dll module is passed to the parameter.
But, EndUpdateResource() always return the following message:
fixme:resource:EndUpdateResourceW (0x15872a,0): stub
-- Gordon.
--
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=6834
matthew.flaschen(a)gatech.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #4259 is|0 |1
obsolete| |
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-06-12 03:47 -------
(From update of attachment 4259)
Me accidentally dumping the whole registry
--
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=6834
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-06-12 03:46 -------
Hmm, I guess Export Registry File does just what it says, export a file that
contains the whole registry... I only meant to export everything below
HKCU\Software\Wine. Anway, the relevant lines are:
[HKEY_USERS\S-1-5-4\Software\Wine\DllOverrides]
"notepad"="native"
"notepad.exe"="native"
--
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=6834
------- Additional Comments From matthew.flaschen(a)gatech.edu 2006-06-12 03:35 -------
Okay, I added both notepad and notepad.exe to the DLL Override list, and set
them to native, applying then clicking ok. It didn't have any effect.
--
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=6836
Summary: Confusing Windows About Boxes
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthew.flaschen(a)gatech.edu
I realized (in the course of researching Bug 6834), that Wine shows its
contributors in the about of certain programs that comes with Windows, such as
Pinball, the original notepad, pinball, minesweeper, etc. All of these programs
(and all the Windows operating system programs I tested) show a Wine credit
(scroll bar with Wine contributors) in the about box; this may also be true of
other programs using the same about box type. I will attach the about boxes
from these three programs on Windows and Wine. In at least one case (original
Notepad), there is no indication of the original copyright/authorship at all,
and a careless read makes it seem like Wine wrote it! For Minesweeper, the
authorship is included, but there is no copyright statement. For Pinball,
there's a cutoff statement "3D Pinball Table created for Microsoft by [...]" (if
you can't wait to see the attachments, it's Maxis). I really don't know for
certain how this came about (and am not prepared to read the source right now),
but I'll speculate. There's probably an API call that generates about screens.
It seems the Wine version always shows the line after the copyright statement
from the original (at least until it gets cutoff); this could be a parameter for
the function. Regardless, I don't think this is fair. The Microsoft copyright
statement should be generated in good faith. The original about boxes contain
the full name of the program, the version, a generic Copyright (C) 1981-2001 (at
least on those I tested) Microsoft Corporation. Then, some have more detailed
authorship on the next line, such as "by Robert Donner and Curt Johnson". This
is the only part that Wine interprets. After that, the Windows versions go on
to say "This product is licensed under ... to <NAME>", and for no apparent
reason the physical memory available. I'm guessing that this info is passed to
an API call, but if not mostly equivalent info is present in the resource file
(under Version-1) and could be manually parsed.
In short, I think Wine should attempt to reproduce this info and should not take
advantage of the API for free advertising. I definitely appreciate the very
hard work of the wine developers, but I think the project is out of line here.
At the very least, the original authorship and copyright should be displayed
(ensuring that nothing's cut off). However, I don't think the contributors
should be shown here. It makes it appear to the naive user that they helped
write the program; in fact, they wrote a translation layer the program is
currently (but was not designed to be) using (some of these people didn't even
write any calls the program uses).
There may be legal ramifications to this, if wine is viewed as creating a
derivative work (doubtful); strict good-faith translation would be fair use, but
this might not be. Either way, I don't think it's right.
--
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=6835
Summary: update wine 9.9 to 9.26...things go 'bump in the night'!
Product: Wine
Version: 0.9.26.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zonger(a)pcez.com
Hi...
the following is the error message received when starting
the famed freeware Synth1 VST. Before updating wine from
ubuntu 9.9 to 9.26, this ran stable every time, but now,
this and several other vsts are crashdiving...
(I renamed the program to s7, but the behaviour is consistant, both as user, and
root, regardless of namechange.
issue command
fst s7.dll
yo... lets see...
The program 'fst' received an X Window System error.
This probably reflects a bug in the program.
The error was 'RenderBadPicture (invalid Picture parameter)'.
(Details: serial 15077 error_code 182 request_code 155 minor_code 7)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
Thi occurs as root and user, and if programs are on separate multiple desktops
P3
256 ram
mAudio 24/96 soundcard
kernel 2.6.15
KDE 3.5.5
latest alsa ,qjackctl, jackd, lashd, fst, and now, 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=6831
support(a)softahead.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://www.softahead.com/dow|http://www.softahead.com/dow
|nloads/VerInfoLib.zip |nloads/UpdateVersion_with_no
| |tepad.zip
------- Additional Comments From support(a)softahead.com 2006-06-12 02:44 -------
Hello Mike..
The attachment file is very short and simple.
If you run this file with notepad.exe(which is included) on your wine environ,
the version info of noptepad.exe will be changed.
Type in "wine UpdateVersion" <return key>.
Notepad.exe should be in the same directory.
If this module displays any message at a runtime, that will be a bug.
If no message, the bug is fixed..
Because I don¡¯t know a test environment of wine, so, this file will be
compiled with vc++6.0(or vc++7.1)
This is really simple and short, I think you can see this straightforwardly.
Please :-)
Source URL> http://www.softahead.com/downloads/UpdateVersion_with_notepad.zip
-- Gordon.
P.S.: I got this source from www.codeproject.com
--
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=6834
------- Additional Comments From mike(a)codeweavers.com 2006-06-12 02:20 -------
You need to set the DllOverride for notepad.exe to "native", then it will work.
--
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=6834
Summary: Wine hides native executables completely
Product: Wine
Version: 0.9.9.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthew.flaschen(a)gatech.edu
Wine implements explorer.exe, notepad, regedit, etc., and makes it impossible to
access the original (packaged with Windows) versions of the programs.
For example, if I navigate to my real windows partition, then go to
windows/system32, I would expect that (/windows is also the mount-point for my
windows partition; I set that up before I got wine):
matthew@matthew-e1505:/windows/windows/system32$ wine ./notepad.exe
would open the real notepad.exe. Instead it opens wine's version. I know wine
can open the real notepad, because I copied it to the linux partition, renamed
it (realnotepad.exe), and it ran fine. Shouldn't it be possible to run/try to
run the original file?
--
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=810
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:36 -------
Closing
--
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=412
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:34 -------
Closing
--
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=335
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:32 -------
Closing
--
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=174
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:31 -------
Closing
--
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=3121
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=6352
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=5493
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=6523
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=2947
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=5643
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=3660
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:15 -------
Closing
--
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=3945
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:10 -------
Closing Duplicate
--
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=3924
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:09 -------
Closing Duplicate
--
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=3916
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-06-12 00:04 -------
Closing Duplicate
--
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=3868
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:59 -------
Closing Duplicate
--
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=3857
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:57 -------
Closing Duplicate
--
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=3835
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:57 -------
Closing Duplicate
--
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.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3607
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:55 -------
Closing Duplicate
--
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=3506
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:54 -------
Closing Duplicate
--
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=3327
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:53 -------
Closing Duplicate
--
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=3232
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:52 -------
Closing Duplicate
--
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=3208
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:51 -------
Closing Duplicate
--
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=3118
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:50 -------
Closing Duplicate
--
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=3087
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:49 -------
Closing Duplicate
--
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=3086
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:48 -------
Closing Duplicate
--
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=3007
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:47 -------
Closing Duplicate
--
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=2898
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:46 -------
Closing Duplicate
--
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=2675
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:44 -------
Closing Duplicate
--
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=2056
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:43 -------
Closing Duplicate
--
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=2040
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:41 -------
Closing Duplicate
--
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=1730
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:39 -------
Closing Duplicate
--
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=1189
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-12 23:37 -------
Closing Duplicate
--
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=6831
------- Additional Comments From support(a)softahead.com 2006-05-12 21:32 -------
Hello. Vitaliy.
In the Internet, there are too many softwares (or product) which are touching
resources as follow:
Shareware - ASProtect,SDProtect and so on : Copy Protection Software,
- ResourceTuner, PE Explorer : Resource Editors...
- Neat Install, CreateInstall, and so on
Open source - NSIS, InnoSetup : install, Setup program..
- ResourceEditor, SmartTranslator from www.codeproject.com
And so on.
Why do you talk "Not cirtical,Normal" about this bug?
-- Gordon.
--
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=6831
------- Additional Comments From mike(a)codeweavers.com 2006-05-12 21:15 -------
안녕하세요!
verinfolib.zip is not a short test program. What I was looking for was a short
(10line?) plain C test program that shows exactly which function is causing trouble.
Ideally one that could be integrated into the Wine regression test suite (for
example, see wine/dlls/kernel32/tests and wine/dlls/ntdll/tests).
Mike
--
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=6831
------- Additional Comments From support(a)softahead.com 2006-05-12 21:06 -------
hello Mike McCormack.
After compiling verinfolib.zip, copy VerInfoLibTest.exe to vi2.exe
and if you type in < wine verinfolibtest -u vi2.exe Test "Test...." > on
linux
you can get the result.
-- Gordon.
--
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=6818
------- Additional Comments From mike(a)codeweavers.com 2006-05-12 20:57 -------
Thanks tracking down the problematic patch.
My work on imagelist was to fix bug 3573, which prevented WinRAR from even
starting on many systems, so it there is an improvement over 0.9.24, though not
for 40tude.
I don't have a news server to connect to here... could you please make a
+imagelist trace for me and attach it to 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=6833
Summary: AIM Pro does not run, instead produces a backtrace and
quits
Product: Wine
Version: 0.9.25.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: probiscus12(a)gmail.com
AIM Pro, available at http://aimpro.premiumservices.aol.com/, seems to install
fine, but does not run, producing the backtrace attached.
Fedora Core 6
Slightly modified 2.6.18.3 kernel (modified from FC6 config file)
Wine 0.9.25 from Fedora Extras
Steps to reproduce;
1. Download and run AIM Pro installer with Wine.
2. Attempt to run AIM Pro.
Actual results;
Outputs a list of FIXMEs and a backtrace, then quits back to the command prompt.
Expected results;
The program runs.
--
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=6819
------- Additional Comments From thunderbird2k(a)gmx.net 2006-05-12 16:30 -------
Try to run the program with debug messages (+opengl,+wgl):
WINEDEBUG=+wgl,+opengl wine wow.exe -opengl &> log
Post the logfile over here. In the logfile we can see which unsupported
functions wow tries to call. It might be possible to disable those calls by not
advertising some GL extensions. (it could be a mesa 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=6832
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.40tude.com/dialog
| |/download.htm
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download
------- Additional Comments From thestig(a)google.com 2006-05-12 15:38 -------
Bug is in 0.9.24 and HEAD as well.
--
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=6832
Summary: 40tude Dialog - richedit control refresh lag
Product: Wine
Version: 0.9.26.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juraj5(a)gmail.com
This is a somewhat irritating bug in richedit controls (probably - I'm just
guessing) that has been present in older builds of Wine too when running 40tude
Dialog. Of course, this bug does not happen in Windows.
Steps to reproduce:
1. Create a new post
2. Enter the following in the field:
Line 1
Line 2
<- an empty line
Line 3
<- an empty line
Then, position the cursor on the beginning of line 3. Press backspace.
Explanation: as expected, the first empty line is deleted and line 3 is pulled
where the first empty line was. We expect this:
Line 1
Line 2
Line 3
<- an empty line
...but we get this:
Line 1
Line 2
Line 3
Line 3
The reason is that the second empty line is pulled in place where line 3 was, as
we expect, but the place where line 3 was is not properly refreshed and we get a
ghost image of line 3 on the second empty line. It we minimize/unminimize the
window, drag it offscreen and then back - scrolling does the trick too - we get
what we expected, but this is a rather annoying bug. I'm guessing it's a bug in
richedit controls.
Tested on Wine 0.9.26 and Ubuntu 6.10 in GNOME, 40tude Dialog 2.0.15.1 b38.
--
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=6818
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |mike(a)codeweavers.com
--
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.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=6818
------- Additional Comments From juraj5(a)gmail.com 2006-05-12 13:11 -------
Sadly, this patch fixes another even worse regression, also posted by me:
http://bugs.winehq.org/show_bug.cgi?id=6672
Please note that both problems were not present in Wine 0.9.24. Wine 0.9.25
introduced the problem I've just linked to. Wine 0.9.26 fixes that problem, but
introduces another one, the problem which is in this bug report.
--
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=6818
------- Additional Comments From juraj5(a)gmail.com 2006-05-12 12:56 -------
Hello, I've completed regression testing on dlls/comctl32 and here are the results:
2614e0ee9120cecf1d5dd2ce6dfa27172cddb7f0 is first bad commit
commit 2614e0ee9120cecf1d5dd2ce6dfa27172cddb7f0
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Tue Nov 14 16:34:46 2006 +0900
comctl32: When removing an image, move the remaining images one forward, not
one backwards.
:040000 040000 6917aab6484248360662742651c70d04b59f657c
b49078fd7c10187a2054c2949e369565b1a24a67 M dlls
--
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=6602
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=6789
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-05-12 12:39 -------
Oh sorry, I mean just "git branch" by my first command.
--
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=6789
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-05-12 12:37 -------
My two eurocents on the offtopic. Peto, judging by the message ("won't bisect
on seeked tree") I guess your may have started bisectioning process already.
Check this to be sure:
git bisect branch
If you are on a "bisct" branch currently (not "master" or "origin"), then issue
this to reset the bisectioning process to an initial state:
git bisect reset
before you do "git bisect start".
--
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=6820
------- Additional Comments From parsonsl(a)upstate.edu 2006-05-12 11:38 -------
I'm not sure where to go with this bug next. The noexec option is not supported
by FreeBSD, so we can't really do anything to try to address that. It would
appear that this bug has roots somewhere else.
Can someone point to a wine version that is known to work for installing 32bit
applications in FreeBSD? I could work on regression testing, but I don't know
where to start yet.
Also, does anyone have any news on tape.dll? As I mentioned before, that was
previously a culprit in regression testing.
--
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=4872
kelfe(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From kelfe(a)gmx.de 2006-05-12 10:58 -------
the new context stuff arrived in git today
so this bug is fixed
thanks to all who worked on 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=6830
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-12 10:29 -------
Patch committed.
--
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=6147
------- Additional Comments From zugurudumba(a)gmail.com 2006-05-12 09:49 -------
Maybe it's just me, but did you disable the "Minimize to tray" option? I have
DC++ running on Ubuntu 6.06, under Wine, and the first thing I do after the
installation installing DC++ is to disable the tray and the transfer bars.
Hope it helps.
--
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=6384
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-12 09:47 -------
Please don't paste debug traces, attach them instead.
Please use unstripped version of Wine (either compile yourself from source or
install -debug package if available). Especially here.
--
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=6831
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|support(a)softahead.com |
Severity|critical |normal
Priority|P1 |P3
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-12 09:43 -------
Not critical. Program reading resources should not try to modify them. This is
more of the program's bug, and not Wine's.
--
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=6384
------- Additional Comments From asdmin(a)gmail.com 2006-05-12 09:23 -------
The last lines when the problem occur:
fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for c0000119
Backtrace:
=>1 0x7cab39e8 in comctl32 (+0x739e8) (0x7bbfb598)
2 0x7cabeb71 in comctl32 (+0x7eb71) (0x7bbfbe48)
3 0x7ef318ca WINPROC_wrapper+0x1a in user32 (0x7bbfbe78)
4 0x7ef337d3 in user32 (+0xa37d3) (0x7bbfbeb8)
5 0x7ef36e8c CallWindowProcW+0x57 in user32 (0x7bbfbef8)
6 0x7ca5cd3a DefSubclassProc+0x15e in comctl32 (0x7bbfbf38)
7 0x0078f7e2 in browseui (+0xf7e2) (0x7bbfbf54)
8 0x0078bc0a in browseui (+0xbc0a) (0x7bbfbf70)
9 0x7ca5cc56 DefSubclassProc+0x7a in comctl32 (0x7bbfbfb0)
10 0x7ca5cddf COMCTL32_SubclassProc+0x71 in comctl32 (0x7bbfbff0)
11 0x7ef318ca WINPROC_wrapper+0x1a in user32 (0x7bbfc020)
12 0x7ef337d3 in user32 (+0xa37d3) (0x7bbfc060)
13 0x7ef35130 WINPROC_CallProcAtoW+0x35a in user32 (0x7bbfc520)
14 0x7ef35e52 CallWindowProcA+0xbf in user32 (0x7bbfc560)
15 0x7ef00fc7 in user32 (+0x70fc7) (0x7bbfc5d0)
16 0x7ef0463a SendMessageTimeoutA+0x1eb in user32 (0x7bbfc630)
17 0x7ef046f5 SendMessageA+0x50 in user32 (0x7bbfc670)
18 0x70bff8ad in shlwapi (+0x2f8ad) (0x7bbfc8b4)
19 0x00798d5a in browseui (+0x18d5a) (0x0001006e)
20 0x00000000 (0x00000000)
0x7cab39e8: movl 0x4(%esi),%eax
--
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=5040
------- Additional Comments From a.hurst(a)shef.ac.uk 2006-05-12 07:50 -------
Hi all,
I'm also trying to install Matlab 7 (7.1), and having the same problem, namely
java.lang.ArrayIndexOutOfBoundsException: 0
Did anyone get any closer to the cause of the bug? We're on java 1.5 now, and
this bug has existed with all matlab installers for a while now.
Anyone found out just what sun.util.calendar.ZoneInfoFile.createZoneInfo() is
trying to do?
Should I sign up for the JDK source code?
Andy
--
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=6831
------- Additional Comments From mike(a)codeweavers.com 2006-05-12 05:24 -------
안녕하세요!
Perhaps you could provide a simple test case (the source to a short program)
that shows the bug you're seeing? This would make it easier for somebody to sovle.
thanks,
Mike
--
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=6826
julliard(a)winehq.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From julliard(a)winehq.com 2006-05-12 04:51 -------
Should be fixed now. Thanks for tracking this down.
--
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=6831
------- Additional Comments From support(a)softahead.com 2006-05-12 04:46 -------
Hello Mike McCormack.
I have found
file: In wine-0.9.26/dlls/ntdll/loader.c,
NtCreateSection() in load_native_dll() return "not STATUS_SUCCESS".
But, I cant understand NtCreateSection().
Could you fix the bug?
-- Gordon
--
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=6432
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From nospam(a)thenerdshow.com 2006-05-12 04:19 -------
let's try this again
*** This bug has been marked as a duplicate of 5486 ***
--
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=5486
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |nospam(a)thenerdshow.com
------- Additional Comments From nospam(a)thenerdshow.com 2006-05-12 04:19 -------
*** Bug 6432 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=6432
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From nospam(a)thenerdshow.com 2006-05-12 04:18 -------
oops
--
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=6432
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From nospam(a)thenerdshow.com 2006-05-12 04:13 -------
This appears to be a duplicate of the other 32 bit cursor bugs out there.
*** This bug has been marked as a duplicate of 1064 ***
--
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=1064
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |nospam(a)thenerdshow.com
------- Additional Comments From nospam(a)thenerdshow.com 2006-05-12 04:13 -------
*** Bug 6432 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=6831
------- Additional Comments From mike(a)codeweavers.com 2006-05-12 03:33 -------
안녕하ì‹ì‹œì˜¤!
You seem to have a firm understanding of the bug. Since you are able to pick
the function that returns the wrong value, you might be able to help us the bug
yourself...
--
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=6831
support(a)softahead.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|BeginUpdateResource bug |BeginUpdateResource 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=6831
Summary: BeginUpdateResource bug
Product: Wine
Version: 0.9.26.
Platform: PC
URL: http://www.softahead.com/downloads/VerInfoLib.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-resources
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)softahead.com
CC: support(a)softahead.com
Hello.
In wine v0.9.26, if you run VerInfoLibTest -u <file.exe> using VerInfoLib.zip
You always get the return value 0 from ::BeginUpdateResource().
Could you fix this bug?
-- Gordon Ahn.
--
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=6830
fitzsim(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #4248 is|0 |1
obsolete| |
------- Additional Comments From fitzsim(a)redhat.com 2006-05-12 02:34 -------
Created an attachment (id=4249)
--> (http://bugs.winehq.org/attachment.cgi?id=4249&action=view)
remove unnecessary "if defined" check
--
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=6829
oberon(a)wildwein.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |oberon(a)wildwein.de
------- Additional Comments From oberon(a)wildwein.de 2006-05-12 02:25 -------
Addendum:
I used Wine 0.9.26 prepackaged for Ubuntu 6.06 LTS (with updates applied)
downloaded from http://wine.budgetdedicated.com/apt dapper main
--
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=6829
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.oberon.ch/zip/Set
| |upBlackBox15.exe
Keywords| |download, source
Summary|unknown application with |BlackBox Component Builder:
|unknown problem... |File Open, cancel triggers
| |assert
--
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=6829
------- Additional Comments From oberon(a)wildwein.de 2006-05-12 01:52 -------
Sorry, that was the first bug I submitted to WineHQ bugzilla.
To reproduce the error:
Install BlackBox Component Builder (an Open Source development IDE). It is
available here: http://www.oberon.ch/zip/SetupBlackBox15.exe A liittle bit
more info can be found here: http://www.oberon.ch/blackbox.html
If the installer does not run under Wine (I don't know): It is possible to
install under M$-Windows (W98, W2K or XP) and copy/use the installation
directory under Wine.
Then use menu File->Open and Cancel that dialog. A so-called trap viewer openes,
which allows you to inspect the local variables of the procedure where an
assertion on the return value occured. The first line of that trap viewer shows
you the kind of trap, the next line the source position. The blue diamonds are
hyperlinks, the left one links you into a viewer with the global variables and
the right one links into the source at the error position of the module.
In the hope that this is enough information to reproduce the problem ... sure,
I could try to write a demo program in C, but since I don't like C, this would
take too long ...
I verified the correct return value under XP by inserting a HALT(0) statement
just before line 375 containing the ASSERT(res=0,100). Wine returns here 4104.
regards
Bernhard Treutwein
--
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=6830
------- Additional Comments From mike(a)codeweavers.com 2006-05-12 01:30 -------
Thanks for the patch. Please submit it to wine-patches(a)winehq.org
--
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=6830
------- Additional Comments From fitzsim(a)redhat.com 2006-05-12 01:26 -------
Created an attachment (id=4248)
--> (http://bugs.winehq.org/attachment.cgi?id=4248&action=view)
patch to make is_dt_flag_valid recognize DT_GNU_HASH as valid
2006-12-05 Thomas Fitzsimmons <fitzsim(a)redhat.com>
* dlls/dbghelp/elf_module.c (is_dt_flag_valid): Recognize
DT_GNU_HASH.
--
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=6830
Summary: winedbg can't find debuginfo in core libraries when
GNU_HASH section is present in wine-pthread
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fitzsim(a)redhat.com
On my x86 Fedora Core 6 machine, winedbg wasn't finding debuginfo for the core
wine libraries.
I tracked down the problem. I compiled wine with the default FC-6 gcc which
passes --hash-style=gnu to the linker by default. is_dt_flag_valid, not
recognizing the DT_GNU_HASH dynamic entry tag, returned 0 when called on that
tag. This resulted in elf_load_file returning before setting
elf_info->dbg_hdr_addr, when loading wine-pthread. elf_info->dbg_hdr_addr
remaining NULL meant that elf_enum_modules_internal returned early, and so
elf_enum_sync_cb wasn't being called for each of the core libraries.
I'm attaching a fix.
--
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=6602
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.ryzom.co
Severity|major |normal
Summary|CTR, ALT, SHIFT Generating |Saga Of Ryzom: ctrl, alt,
|garbage in textfields in |shift generate garbage in
|Saga Of Ryzom |textfields
--
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=6826
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Registry Locale Value is no |Eve Online - Registry Locale
|longer created with new |Value is no longer created
|.wine |with new .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=6804
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-04-12 21:55 -------
Please add an entry for this application in the AppDB http://appdb.winehq.org
--
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=6801
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.gpstrack.com/
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=6800
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Battlereams: terrain, trees |Battlerealms: terrain, trees
|and buildings not textured |and buildings not textured
--
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=6799
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.gpstrack.com/
Keywords| |download
------- Additional Comments From tony.lambregts(a)gmail.com 2006-04-12 21:39 -------
James is right. Whether you add an entry or not is up to you but part of the
reason for the AppDB is to help people identify bugs associated with that app.
There is no point in waiting for an app to run perfectly before adding it to the
database.
--
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=6829
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-gui |wine-comctl32
Summary|COMDLG32: wrong return value|unknown application with
|of CommDlgExtendedError |unknown problem...
|after GetOpenFileName |
------- Additional Comments From mike(a)codeweavers.com 2006-04-12 19:05 -------
Please check the Wiki page on how to write bugs.
http://wiki.winehq.org/Bugs
We need a program to test and to verify the bug has been solved later.
--
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=6818
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-12 15:23 -------
You should use `git bisect start dlls/comctl32` to start bisect.
`man git-bisect` will give you more information.
--
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=6829
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|oberon(a)wildwein.de |
Component|wine-comctl32 |wine-gui
------- Additional Comments From vitaliy(a)kievinfo.com 2006-04-12 15:21 -------
You need to write a test to show it's wrong. MSDN is wrong most of the time.
Also please specify what program actually affected by this. Not what you thing
is wrong.
--
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=6818
------- Additional Comments From juraj5(a)gmail.com 2006-04-12 15:15 -------
How can I only apply patches to dlls/comctl32? I'm now on 0.9.25 with git bisect
good and have flagged 0.9.26 with git bisect bad.
--
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=3028
------- Additional Comments From tony.lambregts(a)gmail.com 2006-04-12 15:03 -------
Maybe I am out to lunch but is this not the same problem as bug 6613. (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=6730
killmorejedi(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From killmorejedi(a)hotmail.com 2006-04-12 14:48 -------
*fixed* in GIT, as best I can tell by
commit 74663901436b4dda91dcdd32d5a762aac1635300
Author: Roderick Colenbrander <thunderbird2k(a)gmx.net>
Date: Sun Dec 3 22:40:24 2006 +0100
wgl: (W)GL_NV_vertex_array_range.
:040000 040000 dbbaa7a7182dac8c6ba95bc7f9123629f5367699
ac858507065cfd9ca00a6b68e58d103a665cdc06 M dlls
Thus says my unregression testing anyway. So yay. Even if the bug report was
mostly ignored, attention was paid to whatever caused it. Go 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=5935
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.mirc.com/get.html
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=6829
Summary: COMDLG32: wrong return value of CommDlgExtendedError
after GetOpenFileName
Product: Wine
Version: 0.9.26.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oberon(a)wildwein.de
CC: oberon(a)wildwein.de
When the GetOpenFileName dialog is "Cancel"led a subsequent call to
CommDlgExtendedError returns 4104 instead of 0
Platform SDK says:
> CommDlgExtendedError Function
>
> ----------------------------------------------------------------------------
>
> The CommDlgExtendedError function returns a common dialog box error code.
> This code indicates the most recent error to occur during the execution of
> one of the common dialog box functions. These error codes are defined in
> Cderr.h.
>
> Syntax
>
> DWORD CommDlgExtendedError(VOID);
> Return Value
>
> If the most recent call to a common dialog box function succeeded, the return
> value is undefined.
>
> If the common dialog box function returned FALSE because the user closed or
> canceled the dialog box, the return value is zero. Otherwise, the return
> value is a nonzero error code. For more information, see the following
> Remarks section.
--
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=6814
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From thestig(a)google.com 2006-04-12 13:56 -------
patch has been accepted.
--
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=6828
Summary: D3D fails to create surface
Product: Wine
Version: 0.9.25.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: duck(a)duckcorp.org
During Sanitarium testing, when switching from loading screen to level 2 scene
rendering, a D3D error occurs, leading to game crash (see attachement for
backtrace).
--
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=6827
Summary: The SimSig installer crashes
Product: Wine
Version: CVS
Platform: PC
URL: http://www.simsig.co.uk/html/downloads.html
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
The installer crashes in SHGetFileInfoW():
000d:Call shell32.SHGetFileInfoA(0045eae8,00000010,0034fcec,00000160,00001010)
ret=0045e9f6
000d:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7e8871b2
000d:trace:seh:raise_exception info[0]=00000000
000d:trace:seh:raise_exception info[1]=00000000
More precisely the crash happens on this line:
hr = IShellFolder_GetUIObjectOf(psfParent, 0, 1,
(LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW,
&uDummy, (LPVOID*)&pei);
And the reason is that psfParent is NULL. psfParent is initialized a bit
above, but only if SHGetFileInfoW() was given a PIDL and
SHGFI_USEFILEATTRIBUTES was not used. This means that whenever a 'real
path' or SHGFI_USEFILEATTRIBUTES is used in combination with
SHGFI_DISPLAYNAME, SHGFI_ICONLOCATION, SHGFI_ICON or SHGFI_SYSICONINDEX,
then SHGetFileInfoW() will crash.
However we cannot just create a pidl since the 'real path' will usually
refer to a nonexistent file or directory (in our case it is
'c:\directory' so it's clear the installer just wants to know what's
the icon for a standard directory).
Any idea?
Wine was built from today's Git but I suspect this issue has been present for a
long time.
--
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=3028
------- Additional Comments From kelfe(a)gmx.de 2006-04-12 10:52 -------
the EVE Online client is fully working around the incorrect error code now
the incorrect error code is marked as todo_wine in a testsuite
--
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=6826
kelfe(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, 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.