http://bugs.winehq.org/show_bug.cgi?id=5429
Summary: There is no type LPMAPISENDMAIL in mapi.h
Product: Wine
Version: 0.9.15.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: choe.hwanjin(a)gmail.com
in mapi.h:194 :
typedef MAPISENDMAIL *LPMAPI;
should be
typedef MAPISENDMAIL *LPMAPISENDMAIL;
--
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=5428
Summary: bug in AdminCommentView.php
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
Upon testing the appdb on my own machine after a patch I wrote, I logged in as
admin and clicked on Comments Management. I received an error stating:
Fatal error: Cannot redeclare forum_lookup_user() (previously declared in
/home/user/appdb/include/comment.php:192) in
/home/user/appdb/include/comment.php on line 204.
To ensure it was not my patch that broke this I tested it with CVS appdb and get
the same error.
I've looked at the code and the problem doesn't stick out like a sore thumb. It
looks as if forum_lookup_user() is only being declared once.
--
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=5421
------- Additional Comments From misc(a)mokfam.com 2006-13-06 20:02 -------
Not exactly sure which version of wine was used to install AIM, but it was quite
old. Possibly 0.9.4. From what I remember you need to install IE 6 SP1 first
to get AIM to even install so you may be running into issues if IE is not
installed. As for native DLLs I am not using any.
--
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=5409
------- Additional Comments From rob(a)codeweavers.com 2006-13-06 16:44 -------
This is a Microsoft bug, not a Wine bug.
Here is an Ethereal trace that proves it:
GET /windows/ie/ie6sp1/download/rtw/x86/ie6sites.dat HTTP/1.0
Accept: */*
UA-pixels: 1280x1024
UA-color: color24
UA-OS: Windows NT
UA-CPU: x86
User-Agent: Mozilla/2.0 (compatible; MSIE 3.0B; Win32)
Host: www.microsoft.com
Connection: Keep-Alive
HTTP/1.0 200 OK
Connection: Close
Pragma: no-cache
cache-control: no-cache
Content-Type: text/html; charset=iso-8859-1
<HTML><HEAD><META HTTP-EQUIV="Refresh" CONTENT="0.1;
URL=/windows/ie/ie6sp1/download/rtw/x86/ie6sites.dat">
<META HTTP-EQUIV="Pragma" CONTENT="no cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</HEAD></HTML>
--
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=5426
------- Additional Comments From alan(a)dominux.co.uk 2006-13-06 16:30 -------
The Orca install actually dumps orca.exe in the root of the c drive, it does
run, but does not list any table contents. In the console was this fixme
fixme:msi:MsiDatabaseIsTablePersistentW 2 L"Directory"
fixme:msi:MsiDatabaseIsTablePersistentW 0 L"Directory"
so I found this function at the end of msiquery.c, it is a stub that returns
MSICONDITION_FALSE to indicate that the table is not persistent or does not
exist or something like that. I changed this to return MSICONDITION_TRUE and it
now works great. My msiquery.c now ends like this:
MSICONDITION WINAPI MsiDatabaseIsTablePersistentW(
MSIHANDLE hDatabase, LPWSTR szTableName)
{
FIXME("%lx %s\n", hDatabase, debugstr_w(szTableName));
// return MSICONDITION_FALSE;
return MSICONDITION_TRUE;//AB just seeing if this fixes Orca. It should
really do some kind of check to see if the table really does exist
//woohoo it does fix Orca!
}
--
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=4093
------- Additional Comments From vanheu(a)gmail.com 2006-13-06 16:19 -------
Same problem with Comandos : behind ennemy lines !
Linux 2.6.15-23-386 (Ubuntu Dapper Drake)
Wine 0.9.15
Alsa 1.0.10
Using OSS driver in winecfg fixed the problem !
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5426
Summary: MS Orca does not install
Product: Wine
Version: 0.9.14.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alan(a)dominux.co.uk
MS Orca is a tool from the windows platform sdk, it can be downloaded from
http://www.microsoft.com/downloads/details.aspx?FamilyId=484269E2-3B89-47E3…
or just get the orca package from the link on this MSDN blogger page
http://blogs.msdn.com/astebner/archive/2004/07/12/180792.aspx
Orca is for examining the database tables in a .msi install package, I wanted to
use it to debug why the Lotus Notes 7 install does not work, but found that the
Orca package had the same issue. The installer dumps some stuff in the root of
.wine/drive_c/ because it fails to resolve directory names correctly. Some files
in the package are incorrectly resolved to intall in c:\ and some files don't
have a path at all and are skipped. I am going to continue tracing the problem,
it is somewhere in helper.c or action.c in the msi dll folder I think.
--
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=4729
------- Additional Comments From lightsolphoenix(a)gmail.com 2006-13-06 14:38 -------
I see this bug as well, using version 0.9.15. It's the only thing that hinders
me from going to Photoshop on Wine full-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=5417
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=5413
------- Additional Comments From atomo64(a)gmail.com 2006-13-06 12:08 -------
The HostCache.dat file is required only if Internet Explorer (up to v5) can't be
/isn't installed. Without Internet Explorer Shareaza can't request the
information from the web caches because a normal web cache request is something
like http://url.com/cache?get=1&hosts=1 , but without IE the request sent to
the server is http://url.com/cache dropping the request arguments and then,
failing to retrieve the right information.
(I tried to change the status to NEW but it says I can't because of permissions
).
--
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=5425
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
------- Additional Comments From vitaliy(a)kievinfo.com 2006-13-06 12:03 -------
May I ask why would you run something like that on Linux? Isn't all the e-mail
servers that came from UNIX and available on Linux enough for you?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5425
froig(a)masadecor-bcn.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|test |wine-ports
--
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=5425
Summary: MDaemon
Product: Wine
Version: 0.9.15.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: froig(a)masadecor-bcn.com
MDaemon (e-mail server) does not work, network interface card is not detected.
fixme:advapi:GetFileSecurityW (L"C:\\windows\\temp\\GLF1c4e.tmp") : returns fake
SECURITY_DESCRIPTOR
fixme:advapi:GetFileSecurityW (L"C:\\windows\\temp\\GLF1c55.tmp") : returns fake
SECURITY_DESCRIPTOR
fixme:advapi:GetFileSecurityW (L"C:\\windows\\temp\\GLF1c58.tmp") : returns fake
SECURITY_DESCRIPTOR
--
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=5407
------- Additional Comments From development--bugs.winehq.org(a)medium.net 2006-13-06 11:27 -------
Vitaliy, "/usr/bin/wine-preloader" might not start at all, but "/usr/bin/wine"
(which is the normal way if invoking wine, I think) does. However,
"/usr/bin/wine" did not print any error message indicating that my memory layout
will be a reason for not loading "/usr/bin/wine-preloader".
--
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=5424
Summary: The Sims installer silently quits with no error output
Product: Wine
Version: 0.9.15.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Rincebrain(a)gmail.com
I inserted my Sims CD (not Sims Deluxe, the original), and attempted to run the
installer as follows:
$ wine Setup.exe
$
No GUI appeared, nothing at all printed - it just exited in approximately a second.
$ time wine Setup.exe
real 0m0.563s
user 0m0.251s
sys 0m0.125s
Thinking my .wine might have been somehow outdated, I removed it and created a
new one, but the same behavior persisted.
Changing the Windows version to anything between Windows 95 and Windows 2003
inclusive did not change this behavior.
--
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=5314
------- Additional Comments From mike(a)codeweavers.com 2006-13-06 10:26 -------
I think that version of input.h has a bug - the problematic structure should be
wrapped in #ifdef __KERNEL__.
I had this problem with debian unstable, and it was fixed with an update, so
perhaps try logging a bug on slackware current, or updating again as it might be
fixed already.
ie. This is not a Wine 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=5421
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Keywords| |download
------- Additional Comments From dank(a)kegel.com 2006-13-06 10:00 -------
What version of Wine are you using?
Are you using any native DLLs?
How did you install AIM?
I can't even install it on vanilla wine with no tweaks (see bug 5423).
Lowering priority to 'normal' since this doesn't block testing
other apps.
--
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=5423
Summary: AOL AIM won't install; CryptVerifyMessageSignature stub
not enough?
Product: Wine
Version: CVS
Platform: Other
URL: http://www.aim.com/get_aim/win/latest_win.adp?aolp=
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Installing the winxp/win2k version of AOL AIM fails
with Wine from cvs friday:
$ wine AOLDNLD.exe
...
fixme:crypt:CryptVerifyMessageSignature stub: 0x7fb8e2d0, 0, 0x7fd8fa48, 5712,
(nil), (nil), (nil)
...
We encountered an error during the download process. Please try downloading
again from http://www.aim.com.
Error: -2301
--
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=5407
------- Additional Comments From julliard(a)winehq.com 2006-13-06 09:43 -------
There is a warning message in wine-glibc. If it doesn't appear for you, please
try to figure out why so that we can fix 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=5407
------- Additional Comments From vitaliy(a)kievinfo.com 2006-13-06 09:41 -------
The problem is, it can't even start. How will it print anything? It's been
discussed on wine-devel.
--
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=5407
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From dank(a)kegel.com 2006-13-06 09:30 -------
The right action might be for wine-preloader to print
an intelligible error message and exit with status 1.
I'm lowering this to normal priority, as IIRC very few people have
the 2G-2G split.
--
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=5345
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
------- Additional Comments From dank(a)kegel.com 2006-13-06 09:08 -------
Downgrading to normal severity
--
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=5422
Summary: ZinioReader crashes when using fglrx ati driver
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cromo(a)klej.net
ZinioReader (http://appdb.winehq.org/
appview.php?versionId=4882&iTestingId=3636) crashes when using x.org 7.0 fglrx
driver (8.25.8). I have reported these crashes in Application Database (same
link as above) some time ago, but just recently found out that this happens
only with fglrx drivers. Opensource r300 drivers work fine, although I tested
these with direct rendering turned off.
--
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=4964
juris.smotrovs(a)sets.lv changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5421
Summary: AOL AIM sending directory crashes
Product: Wine
Version: 0.9.15.
Platform: PC
URL: http://www.aim.com/get_aim/win/other_win.adp?aolp=
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: misc(a)mokfam.com
Using kernel 2.6.15 on a Slackware 10.1 system.
In AOL AIM 5.9.3861.0 you have the option of sending someone a directory of
files or one file at a time. The latter works fine, however the directory send
crashes AIM.
--
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=5420
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)codeweavers.com 2006-13-06 06:11 -------
Patch is committed:
http://www.winehq.org/pipermail/wine-cvs/2006-June/023666.html
Please check that this solves the problem...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5400
------- Additional Comments From dvsoftware(a)gmail.com 2006-13-06 04:28 -------
interesting, full game behaves exactly the same before no dvd patch. After
patching it 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=5419
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From mike(a)codeweavers.com 2006-13-06 04:15 -------
Hi Hwanjin-shi,
I'll submit a patch to fix this.
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=5420
------- Additional Comments From choe.hwanjin(a)gmail.com 2006-13-06 04:10 -------
My code not wine code will have locale charset strings.
So I need such compile option '-finput-charset=euckr'.
And, other wine headers have 'Copyright (C) 1999 Francois Gouget' not 'Copyright
(C) 1999 François Gouget'.
Only mapi.h, objbase.h and storage.h have.
Please grep it:
grep Gouget include/*.h
--
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=5420
------- Additional Comments From hans(a)it.vu.nl 2006-13-06 03:39 -------
Why do you want to interpret Wine source code as euckr?
--
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=5420
Summary: charset encoding problem with wine header
Product: Wine
Version: 0.9.15.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: choe.hwanjin(a)gmail.com
I cannot use gcc option '-finput-charset=euckr' with wine header.
When I compile some c source with this option, gcc makes error:
$ gcc -c -I wine-0.9.15/include -finput-charset=euckr -c test.c
In file included from wine-0.9.15/include/windows.h:77,
from test.c:1:
wine-0.9.15/include/ole2.h:25:21: error: failure to convert euckr to UTF-8
In file included from wine-0.9.15/include/objidl.h:10,
from wine-0.9.15/include/oaidl.h:10,
from wine-0.9.15/include/oleauto.h:22,
from wine-0.9.15/include/ole2.h:26,
from wine-0.9.15/include/windows.h:77,
from test.c:1:
where test.c is :
#include <windows.h>
void test(void)
{
}
The reason is that some header files have iso8859-1 characters.
So I made a patch for this problem.
I will attach 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=5409
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From truiken(a)gmail.com 2006-13-06 03:21 -------
Either way, the bug is: wine does not provide inseng.dll, which ie6setup.exe
requires. If you're having problems with native dlls, that's not wine's bug.
Marking as a duplicate, but it really should be invalid, worksforme, etc.
*** This bug has been marked as a duplicate of 1293 ***
--
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
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |peter(a)cendio.se
------- Additional Comments From truiken(a)gmail.com 2006-13-06 03:21 -------
*** Bug 5409 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=5409
peter(a)cendio.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From peter(a)cendio.se 2006-13-06 03:12 -------
>You're using a version of inseng.dll that came with IE5
No, I'm not. Read comment #2 again, I'm using the one from
http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-….
This is version 6.0.2800.1106.
I've tried inseng.dll from Windows XP as well (version 6.0.2900.2861), and I'm
still getting this problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5419
Summary: BTLALIGNMENT should be BLTALIGNMENT
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: choe.hwanjin(a)gmail.com
BTLALIGNMENT should be BLTALIGNMENT in wingdi.h
It may be a typo.
--
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=5078
------- Additional Comments From alex(a)thehandofagony.com 2006-13-06 02:58 -------
I tested the demo with 0.9.15, with a fresh .wine, and the problem occured.
--
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=5404
------- Additional Comments From killertux(a)suomi24.fi 2006-13-06 02:56 -------
Created an attachment (id=2624)
--> (http://bugs.winehq.org/attachment.cgi?id=2624&action=view)
font,+xrender debug log from magic.exe
font,+xrender debug log from magic.exe
debug is made in latest Wine git with default settings.
bugs like before all fonts are trasparent/gone.
Application: Magic Online Install/Update Agent
filename: magic.exe
size: 512000
md5sum: 285231df17bf2890396fe8056862a349
--
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=5409
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From truiken(a)gmail.com 2006-13-06 02:52 -------
You're using a version of inseng.dll that came with IE5, which is too old. You
need a version from XP, possibly 2k. The bug here is that we rely on a native
copy of inseng.dll, which there is already a bug report open for. I just
installed again, works perfectly fine.
--
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=5409
peter(a)cendio.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From peter(a)cendio.se 2006-13-06 02:29 -------
I'm getting this error even without ie6_overrides.reg. This is what I'm using:
$ wget
http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-…
$ cabextract -L IE_S5.CAB
$ cabextract -L -F inseng.dll ie_5.cab
$ rm -rf ~/.wine ie_5.cab IE_S5.CAB
$ wineprefixcreate
$ cp inseng.dll ~/.wine/drive_c/windows/system32/
$ wget
http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-…
$ wine ie6setup.exe
This works with Wine 0.9.14 on FC5, but on FC4 with 0.9.15 or the CVS version as
of 2006-06-12, Im still getting this problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5418
Summary: dlls/wined3d/device.c lines 1282-1295
Product: Wine
Version: 0.9.15.
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: master_up(a)post.cz
if (NULL == object->glCtx) {
ERR("cannot create glxContext\n");
LEAVE_GL();
return WINED3DERR_NOTAVAILABLE;
}
LEAVE_GL();
if (object->glCtx == NULL) {
ERR("Error in context creation !\n");
return WINED3DERR_INVALIDCALL;
} else {
TRACE("Context created (HWND=%p, glContext=%p, Window=%ld, VisInfo=%p)\n",
object->win_handle, object->glCtx, object->win, object->visInfo);
}
------------
I'm not sure, but LEAVE_GL(); cannot change value in object->glCtx. If cannot,
the previous code check the same twice. Or there is a good reson to do this?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5417
Summary: Fraps fails on loading with wine client error:e: write:
Bad file descriptor
Product: Wine
Version: 0.9.15.
Platform: Other
URL: http://www.fraps.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marc.w(a)smlintl.com.au
CC: marc.w(a)smlintl.com.au
Download the trial version currently version 2.7.3.
Did the command.
wine Desktop/FRAPS273.EXE
and it fails with the error.
Attachment included.
--
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=5233
------- Additional Comments From olger901(a)gmail.com 2006-13-06 01:22 -------
The problem is solved for older installers, however the problem still occurs on
more recent installers...however this could be a different bug causing the same
problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5415
------- Additional Comments From marc.w(a)smlintl.com.au 2006-13-06 01:06 -------
Also the link for the usefulregistrykeys I added Arial = Tahoma in the HKLM ->
Winnt -> Currentversion -> fontsubstitute and I ran out of room for the
installation code.
If I removed what I had done it works fine. Not sure if that helps. I have
installed a stock standard FC5 downloaded from extras wine 0.9.15
--
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=5415
------- Additional Comments From marc.w(a)smlintl.com.au 2006-13-06 01:03 -------
That link to the other bug I submitted but this one 'seems' different because I
have managed to get further than I could previously.
Previously I could only get as far as the Installation key code entry and I ran
out of room. Currently I can input all the numbers and click next then it stops.
Also a note I have bypassed the autorun.exe file and gone straight to the
Setup.exe file which is in a different directory. The logic is because the
autorun.exe file requires Flash and the Setup.exe does not require it.
To make it easier to understand I've included the diretory layout.
/media/QB2006-07/QBooks
[marc@localhost QBooks]$ ls
data1.cab data2.cab ikernel.ex_ readme.txt Setup.exe setup.inx
data1.hdr encpack_win2000_en.exe layout.bin setup.bmp Setup.ini
If anyone else wants to try something that I haven't.
--
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=5416
------- Additional Comments From tony.lambregts(a)gmail.com 2006-13-06 00:31 -------
Well it does. I thought it strange too but that is the case.
The very first part of the patch (to dlls/avifil32/Makefile.in) can be applied
by itself but both the patch to dlls/comdlg32/Makefile.in and
dlls/dmloader/Makefile.in do make it crash. I have only tried to apply these
first three by themselves at this time to narrow it down somewhat. I will try
the others individualy if that makes sense to try.
I welcome other suggestions.
--
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=5416
------- Additional Comments From mike(a)codeweavers.com 2006-13-06 00:08 -------
Seems unlikely that that patch could cause such a regression...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5416
Summary: Port royal 2 demo will not start (regression)
Product: Wine
Version: 0.9.15.
Platform: PC
URL: http://downloads.ugo.com/download.php?gameid=4114
OS/Version: Linux
Status: NEW
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tony.lambregts(a)gmail.com
CC: julliard(a)codeweavers.com
This patch causes the Port Royal 2 demo to not load
http://source.winehq.org/git/?p=wine.git;a=commit;h=9ca8a86914ab7659e934b42…
it fails with the following error:
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 144 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 533
Current serial number in output stream: 533
With this patch backed out with cvs it starts up and displays its main menu
--
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=5415
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|marc.w(a)smlintl.com.au |
Component|wine-binary |wine-ole
Summary|RPCRT4_io_thread receive |QuickBooks Pro 2006/2007
|failed with error 6c0 |does not installs
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 23:58 -------
Could you:
- Remove your ~/.wine dir
- Install Mozilla ActiveX from this link: http://source.winehq.org/mozactivex
- Set IE version according to http://wiki.winehq.org/UsefulRegistryKeys
Then try installing this app as-is?
Also look at other Quicken bugs. This looks like a dup of Bug 2389
--
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=5415
Summary: RPCRT4_io_thread receive failed with error 6c0
Product: Wine
Version: 0.9.15.
Platform: Other
URL: http://www.quicken.com.au/BusinessFinance/QuickBooksPro/
default.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marc.w(a)smlintl.com.au
CC: marc.w(a)smlintl.com.au
With quickbooks pro 2006/2007 install CD I was able to enter the installation
key code. I added ole32.dll, snmpapi.dll and nativemsi which is what they seem
to need.
After the installation code it stops. I created a full log and I'll add the
last 100 lines of it in an attachment.
Other questions I do have is if it requests dll's should I file bugs against
those dll's 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=5175
------- Additional Comments From siriuskr(a)gmail.com 2006-12-06 22:35 -------
I found a way to Fix this currently, open up steam games then right click on
Counter-strike Source and do "Properties" -> "Set Launch Options" -> And in the
box type "-width 1024 height 768" with out quotes. Im not sure why but the
800x600 just doesnt seam to 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=5410
------- Additional Comments From djrpublic(a)cfl.rr.com 2006-12-06 20:37 -------
Yes, they both seem to work. I can type something and select those fonts to
display the text successfully. I can also type in the preselected font.
Tahoma and Trebuchet also 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=5414
Summary: leak of a file descriptor in FTP_DoPassive()
Product: Wine
Version: CVS
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chadd(a)cs.umd.edu
It looks like the function FTP_DoPassive() in wine/dlls/wininet/ftp.c (1.65) may
leak a file descriptor (socket) in the error case (socket() succeeds but
connect() fails and the control proceeds to lend).
--
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=5413
Summary: Shareaza can't connect without existing HostCache.dat
Product: Wine
Version: 0.9.15.
Platform: PC
URL: http://appdb.winehq.org/appview.php?appId=1447
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adrian.macneil(a)gmail.com
In Shareaza (www.shareaza.com), the p2p program won't connect to the gnutella2
network, even if you leave it running for hours. Interestingly, it connects to
the ed2k network fine. All the host discovery services fail to return results.
Workaround:
Copy HostCache.dat from a working Shareaza install to
~/.wine/drive_c/windows/profiles/user/Application Data/Shareaza/Data/
Thoughts:
It could be that Shareaza can't connect to web-based discovery services at all.
Once it has working hosts to connect to it has other methods of discovering new
hosts.
I'm not sure how to debug this bug, so if you give me some instructions on how
to get some logs or something I will gladly help.
--
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=5078
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 19:05 -------
Demo of course. I don't have full version.
Also bug is about demo version 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=5078
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 18:51 -------
You really might want to upgrade.
Installed and works fine here as well as for number of other people on IRC.
--
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=5410
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 18:46 -------
Could you check that "SYSTEM" and "MS Sans Serif" fonts do work in notepad?
--
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=5233
------- Additional Comments From alex(a)thehandofagony.com 2006-12-06 18:22 -------
Worms World Party had this problem, but it has been fixed in 0.9.15. Can any
of you confirm that the other isntallers are working again?
--
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=4553
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Summary|Future Cop doesn't start |Future Cop doesn't start
|(quartz?) |
------- Additional Comments From alex(a)thehandofagony.com 2006-12-06 17:43 -------
I tried with native quartz and native quartz & devenum, but it still does not
work, so it is not a quartz problem, I think. It may be related to the intro
films, 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=5411
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 17:33 -------
arts related problem.
*** This bug has been marked as a duplicate of 4051 ***
--
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=4051
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |StempUbuntu(a)gmail.com
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 17:33 -------
*** Bug 5411 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=5134
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 17:33 -------
So it is arts related problem.
*** This bug has been marked as a duplicate of 4051 ***
--
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=4051
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |holy.smoking.floorboards.bat
| |man(a)gmail.com
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 17:33 -------
*** Bug 5134 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=2342
------- Additional Comments From adrian.macneil(a)gmail.com 2006-12-06 17:23 -------
Shareaza can't open files directly, I'm not sure which dialog they are talking
about. I can't reproduce this error anywhere in Shareaza with the latest
Shareaza and Wine versions.
--
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=5376
------- Additional Comments From tony_caduto(a)amsoftwaredesign.com 2006-12-06 17:11 -------
FYI, it seems to work now in WINE 0.9.15.
Some other stuff that did not work now works in 0.9.15, seems to be a solid
release.
If someone else can confirm this we can mark this one closed.
--
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=5412
Summary: Missing netapi32.dll.NetUserGetLocalGroups breaks Omni
Back Setup
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luizluca(a)gmail.com
Hello,
I tried to install Omni Back II (HP backup tool) and installation failed
with the missing method netapi32.dll.NetUserGetLocalGroups.
Here is the output
fixme:rpc:RpcBindingSetAuthInfoExW unsupported AuthzSvr 1
fixme:ntdll:NtQuerySecurityObject (0xffffffff,0x00000002,
(nil),0x00000000,0x55c2f83c) stub!
fixme:ntdll:NtQuerySecurityObject
(0xffffffff,0x00000002,0x57a425c8,0x00000020,0x55c2f83c) stub!
fixme:advapi:LookupAccountSidA ((null),sid=0x57a425dc,0x57bf9dbb,0x55c2f840
(260),0x57bf9ecc,0x55c2f848(260),0x55c2f850): semi-stub
wine: Call from 0x55a20f80 to unimplemented function
netapi32.dll.NetUserGetLocalGroups, aborting
wine: Unimplemented function netapi32.dll.NetUserGetLocalGroups called at
address 0x55a20f80 (thread 0011), starting debugger...
fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for c0000119
--
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=1631
------- Additional Comments From gerald.britton(a)gmail.com 2006-12-06 15:11 -------
For me, problem is fixed in 0.9.15 with Riven
--
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=5407
------- Additional Comments From truiken(a)gmail.com 2006-12-06 12:17 -------
Just to note, I'm running with 4Gb of ram and I haven't experienced this problem
with vanilla 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=5407
------- Additional Comments From development--bugs.winehq.org(a)medium.net 2006-12-06 11:48 -------
Hello, I set the kernel address space start to 0x80000000, and now wine runs
fine. (I'm running with 1.5GiB, so I personally encounter no loss here.)
So relaxing the requirements from the kernel side seems to be possible.
Vitaly: How severe is the problem of limiting the user memory to <2GB (regarding
mapping Linux libraries to the lower address space)?
--
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=5409
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From truiken(a)gmail.com 2006-12-06 11:12 -------
You don't need to use any dlloverrides anymore.
$ rm -rf ~/.wine
$ wineprefixcreate
$ cp inseng.dll ~/.wine/drive_c/windows/system32/
$ wine ie6setup.exe
--
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=5410
Summary: PAF 5.2 text not visible
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djrpublic(a)cfl.rr.com
Wine 0.9.15 Ubuntu 6.06 LTS fresh PAF 5.2 install
Program installs "normally".
Program apparently runs "normally" = stdole32.tlb must be manual then built-in =
usp10.dll must NOT be native or wine/PAF will crash
Program no longer crashes when the individual tab is selected
The menubar has text as do the menus - the only text visible on any of the 3 tab
screens is the few words describing each data display area in the family view -
the tree view is drawn correctly but with no text and no text is shown when the
mouse is over an person - the individual view is blank - in the edit individual
and edit marriage windows tabbing from field to field shows the data for the
active field only so we know the database is correctly loaded
You guys working on the programming deserve a lot of praise PAF's gonna run fine
some day!
--
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=4344
------- Additional Comments From djrpublic(a)cfl.rr.com 2006-12-06 10:40 -------
Wine 0.9.15 on Ubuntu 6.06 LTS fresh PAF5.2 install
PAF5.2 no longer crashes when the Individual tab is selected so I guess we have
to mark this fixed! ;-) Good work guys!!!
However, I'm back to not having ANY visible text!
stdole32.tlb must be native - builtin
native usp10.dll must not be used - PAF crashes if it is
Anyone remember what we did months ago to get text back?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5391
------- Additional Comments From kdekorte(a)yahoo.com 2006-12-06 10:14 -------
If I run without -w but with the composite extension turned on, the game window
is slid down on the screen. You can only see the top 1/2 of the game. If I
disable composite then everything works well.
I would prefer to run with Composite enabled.
--
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=5409
Summary: ie6setup fails with "The download location information
is damaged"
Product: Wine
Version: CVS
Platform: PC
URL: http://appdb.winehq.org/appview.php?appId=25
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peter(a)cendio.se
I'm unable to install Internet Explorer 6. I'm using the latest CVS version as
of 2006-06-12 and I've followed the instruction on
http://appdb.winehq.com/appview.php?versionId=469 (Manual installation):
$ \rm -rf ~/.wine
$ wine regedit ie6_overrides.reg
$ wine dcom98.exe
$ rm -f ~/.wine/drive_c/windows/system32/regsvr32.exe
$ wine ie6setup.exe
When the download is about to start, I get:
"The download location information is damaged. Please clear your
Internet Explorer browser cache and retry Setup."
--
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=3370
juris.smotrovs(a)sets.lv changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |juris.smotrovs(a)sets.lv
--
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=5400
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Summary|Tomb Raider Legends Demo |Tomb Raider Legends Demo
|installs but doesn't run |installs but doesn't run -
| |needs .NET
------- Additional Comments From vitaliy(a)kievinfo.com 2006-12-06 09:43 -------
So far it has nothing to do with protection:
0009:Call ntdll.RtlInitUnicodeString(7fb7f7bc,7fe3ec00 L"mscoree.dll") ret=7fc29daf
0009:Ret ntdll.RtlInitUnicodeString() retval=00000018 ret=7fc29daf
0009:Call ntdll.LdrGetDllHandle(00000000,00000000,7fb7f7bc,7fb7f7c8) ret=7fc29dcf
0009:Ret ntdll.LdrGetDllHandle() retval=c0000135 ret=7fc29dcf
0009:Call ntdll.RtlNtStatusToDosError(c0000135) ret=7fc29de0
0009:Ret ntdll.RtlNtStatusToDosError() retval=0000007e ret=7fc29de0
0009:Ret kernel32.GetModuleHandleA() retval=00000000 ret=01a93ac4
0009:Call kernel32.ExitProcess(00000001) ret=01a93ae8
0009:Call ntdll.LdrShutdownProcess() ret=7fc377ef
--
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=5408
Summary: EMS PostgreSQL Manager missing text labels.
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sfriedman(a)tortus.com
I am attempting to get the following software working under wine:
EMS PostgreSQL Manager 2005 for Windows version 3.5.0.1.
I am running Ubuntu Dapper 6.06. I originally tried the default wine
installation that installs via Ubuntu's Synaptic Package Manager. This produced
a bug simply loading the software. Investigating this bug online, I found a
patch. I downloaded the source for wine version 0.9.12 from
http://wine.budgetdedicated.com/apt and applied the patch. (I will try to attach
this patch.diff, but I see no "attachments" controls as I write this.) I then
custom compiled the patched source and the program now runs.
But now text in unbolded labels in trees (such as the Databases sidebar or the
pulldown menu listing field types), tables (such as those listing a database
table's fields and their properties), pull down menus (such as those listing the
available tables in the Object panel of the sidebar that appears for a
particular table) and numeric text boxes (such as those displaying a database
record's id field in Form View of the Data tab for a particular database table)
do not display. I cannot tell if it cannot find the font with which to render
them or if it is rendering them as white on white. I installed every font I
could find into wine's C:\Windows\Fonts directory, and while the look of the
visible fonts changed when I did so, the invisible fonts remained invisible.
--
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=5372
hallo(a)michael-kaufmann.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From hallo(a)michael-kaufmann.ch 2006-12-06 09:21 -------
Amazing work, qingdao! Thank you!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5405
------- Additional Comments From stefan_betz(a)gmx.net 2006-12-06 09:20 -------
Yes, Fontforge is installed!
I have also installed many TTF-Fonts for my X-Server, can this be the Problem
(e.g. have wine selected the wrong font?)...
I have locked at the Details (with negative and non negative numbers!), and it
look a little bit more right with a negative number, like there is an invisible
"-"-Sign!
Greetings Betz Stefan
PS: My System is Debian 3.1 Stable, with all official updates installed!
--
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=5078
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Heroes V demo setup doesn't |Heroes V setup doesn't
|recognize setup.exe |recognize setup.exe
------- Additional Comments From alex(a)thehandofagony.com 2006-12-06 09:03 -------
This also happens with the "Collector's Edition".
--
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=5406
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-12-06 08:35 -------
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=5406
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-12-06 08:34 -------
resolving FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3370
------- Additional Comments From juris.smotrovs(a)sets.lv 2006-12-06 08:10 -------
Created an attachment (id=2618)
--> (http://bugs.winehq.org/attachment.cgi?id=2618&action=view)
Patch enabling correctly setting application icon in WM
Craig, can you test whether this patch corrects your problem?
At least it solves mine which seems to be the same: Wine icon shows in window
manager caption and task bar instead of the application icon.
The problem is that, even though, at WM_SETICON the correct icon is set, a bit
later X11DRV_set_wm_hints resets the icon black to class default.
It seems that X11DRV_set_wm_hints was originally designed to be called only
when creating a new window: it allocates icon hints instead of getting the
existing ones, and sets the class default as the initial icon.
However, later X11DRV_set_wm_hints calls have been added at window mapping and
style change. Thus icon is reset to class default each time the window is
mapped or its style changed.
My patch checks whether an icon has already been set for the window, and in
such case does not reset the icon to class default. (The icons are set with
WM_SETICON via another x11drv function X11DRV_SetWindowIcon.)
--
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=5406
------- Additional Comments From wine.tester(a)gmail.com 2006-12-06 05:03 -------
No actually I wasn't using 0.9.15. :( After installing the Suse RPM for 0.9.15.
I ran the source RPM (wine-0.9.15-SuSELinux100.src.rpm) package and hadn't
realized that it was installing the Wine version (20050725) that came with Suse
on the install DVD. I tried it several times and even downloaded a new copy and
it always installed the older version of Wine. This ticket can be closed, when
I tried the Gmail notifier installer after ensuring I had the correct version of
Wine it worked fine.
--
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=4756
------- Additional Comments From lemsto(a)voila.fr 2006-12-06 04:58 -------
I've tried using windows' riched20.dll AND riched32.dll and grayed button
appears ungrayed when going at bottom of the license text. Installation just
works with these two 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=5395
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |ASSIGNED
------- Additional Comments From mike(a)codeweavers.com 2006-12-06 03:40 -------
Interesting... I will have a look into this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5404
------- Additional Comments From huw(a)codeweavers.com 2006-12-06 03:14 -------
Could you get me a +font,+xrender log (without those ClientSide* settings in the
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=5407
------- Additional Comments From vitaliy(a)kievinfo.com 2006-11-06 23:45 -------
There are several applications that do access SharedUserData structure located
at 0x7ffe0000. It is there on all winNT systems.
Also if you load all the Linux libraries into lover 2GB they will stomp over
address space required by Windows programs.
This is just reasons why 2GB/2GB split is not compatible with 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=5404
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|killertux(a)suomi24.fi |
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From vitaliy(a)kievinfo.com 2006-11-06 23:40 -------
I verified on IRC that both "SYSTEM" and MS Sans Serif" fonts do work in Notepad.
Other person with exact same problem has FC.
--
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=5406
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
------- Additional Comments From vitaliy(a)kievinfo.com 2006-11-06 23:38 -------
Are you sure you using wine-0.9.15? The auto-detect windows version option was
removed almost a year ago.
You have to set version for "Defualt Settings". Per app might not 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=5400
------- Additional Comments From dvsoftware(a)gmail.com 2006-11-06 22:12 -------
It's known issue - securom7 isn't supported. You need full game with nodvd patch.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5407
------- Additional Comments From mike(a)codeweavers.com 2006-11-06 20:58 -------
We already have problems with applications running out of memory because we only
have 2G to play with, though admittedly those problems are also due to address
space fragmentation.
I think even if we moved wine-preloader, the 2G/2G split may still incompatible
with the win32 address space, because there are things that need to be mapped
above 78000000... but perhaps the majority of applications will not be affected
by this.
You can try change the preloader mapping address. It is defined in
loader/Makefile.in. If that works, submit a patch to wine-patches and argue for
the change there.
--
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=5407
Summary: wine-preloader receives SIGKILL on start on machines
with >1GiB RAM
Product: Wine
Version: 0.9.11.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: development--bugs.winehq.org(a)medium.net
This bug is related to bug 2574 ( http://bugs.winehq.org/show_bug.cgi?id=2574 ).
What Mike McCormack points out, seems to be correct. According to "objdump -f
/usr/bin/wine-preloader", the start address of "wine-preloader" is 0x7c000000.
However, when using a Linux kernel which is configured to "2G/2G user/kernel
split" (as explained here: http://kerneltrap.org/node/6067 ), the kernel address
space already starts at 0x78000000 (not at 0x80000000), making it impossible to
map wine-preloader to the user virtual memory from start address 0x7c000000 on
(because the user virtual memory ends at 0x78000000) .
Thus, "wine-preloader" immediately receives a KILL signal from the kernel.
This bug should be fixed. It makes wine unable for wine-users who have a
properly configured kernel and more than 1GiB RAM (but not more than 2GiB RAM).
This user group should enable "2G/2G user/kernel split" for optimal performance
if they do run applications which need more than 2GB virtual address space. I
doubt that wine needs so much virtual address space in every instance.
As a solution, for example, "wine-preloader" could use a slightly lower start
address like 0x74000000.
--
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=5386
------- Additional Comments From mike(a)codeweavers.com 2006-11-06 20:16 -------
Make sure to "configure && make depend" after each bisect, hopefully that should
fix the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5404
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Regression: wine>0.9.9, |Gathering Online installer
|ClientSideWithCore=N&ClientS|fonts transparent
|ideWithRender=N workaround |
|do not work |
------- Additional Comments From mike(a)codeweavers.com 2006-11-06 20:12 -------
We should try to fix the problem, not make the work around work.
I suggest you are either missing the correct version of freetype/fontforge or
have some other screwy Gentoo problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5406
Summary: Gmail notifier does not install
Product: Wine
Version: 0.9.15.
Platform: Other
URL: http://http://appdb.winehq.org/appview.php?appId=4539
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.tester(a)gmail.com
When trying to install Gmail notifier with Wine 0.9.15 I receive an error saying
Gmail notifier requires Windows 2000 or higher regardless of Windows version
selected in Wine Config. I tried with auto detect, Win2000, WinXP and Win2003.
--
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=3818
------- Additional Comments From bmichaelsen(a)gmx.de 2006-11-06 16:00 -------
Slowness and errormessage also appear in the Hearts of Iron 2: Doomsday versions
1.0 and 1.2 (wine 0.9.8)
--
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=5405
Summary: EasyCT: No negativ Numbers in the status bar!
Product: Wine
Version: 0.9.15.
Platform: All
URL: http://www.easyct.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan_betz(a)gmx.net
As now #4509 is fixed it testet EasyCT much more, and i see the following:
The "Saldo"-Field in the Statusbar Displays no negativ Numbers!
In my example file (see Attachment Jahr2006.ect) i have moor money outgoing than
ingoing...
The calculation i right, but it shows "Saldo für 2006: 900,00" insteat of "Saldo
für 2006: -900,00"..
The only thing missing is the "-"-Sign :-(
Is only the font wrong drawn? Or is that another Problem?
greetings Betz Stefan
PS: My natural language is german, is there an way to report bugs in german,
beacuse my english is not very good :-(
--
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=4509
stefan_betz(a)gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From stefan_betz(a)gmx.net 2006-11-06 12:56 -------
I testet it again with 0.9.15 and it works all!
Thankyou for fixing my bug :-)
greetings Betz Stefan
--
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=5404
killertux(a)suomi24.fi changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |huw(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.
http://bugs.winehq.org/show_bug.cgi?id=5404
Summary: Regression: wine>0.9.9,
ClientSideWithCore=N&ClientSideWithRender=N workaround
do not work
Product: Wine
Version: 0.9.15.
Platform: PC
URL: http://mtgoinstall.wizards.com/installers/mtgodl2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: killertux(a)suomi24.fi
CC: killertux(a)suomi24.fi
System:
Gentoo Linux
Xorg-X11 6.8.2-r7
Fluxbox 0.9.14-r1
Stock Kernel 2.6.16.20
GCC 3.4.6-r1 (Wine and kernel are compiled with this)
Problem:
Magic: The Gathering Online installer (after winzip self extractor) and in game
fonts are totally transparent or invisible/gone however using two settings
worked to solve this problem
those are
ClientSideWithCore=N
ClientSideWithRender=N
to the Wine registry to make fonts visible.
Latest Wine where this workaround worked was Wine 0.9.9 and it stopped working
in Wine 0.9.10. There are two possible way to fix this bug generally first to
make the two settings work like they worked before or make fonts be visuble when
using default settings.
first bad commit:
http://source.winehq.org/git/?p=wine.git;a=commit;h=b55746ab62739fc1e4c0d4a…
--
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=5386
------- Additional Comments From ajp(a)princeswalk.fsnet.co.uk 2006-11-06 11:50 -------
The compile after the first bisect ended in errors. Here are the last few:
bitblt.c: At top level:
bitblt.c:1622: error: syntax error before ‘*’ token
bitblt.c: In function ‘X11DRV_StretchBlt’:
bitblt.c:1630: error: ‘physDevSrc’ undeclared (first use in this function)
{standard input}: Assembler messages:
{standard input}:3246: Error: symbol `__dbcl' is already defined
{standard input}:3252: Error: symbol `__dbcl' is already defined
{standard input}:3290: Error: symbol `__dbcl' is already defined
{standard input}:3339: Error: symbol `tmpGC' is already defined
make[2]: *** [bitblt.o] Error 1
make[2]: Leaving directory `/home/tony/bin/wine-git/dlls/x11drv'
make[1]: *** [x11drv] Error 2
make[1]: Leaving directory `/home/tony/bin/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=3667
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-11-06 02:45 -------
confirming.
--
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=5401
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-11-06 02:14 -------
IIRC you can still extract the install files with 'unzip nfsmwdemo.exe'
My guess would be this is due to the extremely high file size of this
executable, but i'm not sure. Anyone a hint on this?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4242
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-11-06 02:05 -------
Yip, it starts fine with current cvs. Thanks dmitry, for the quick 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=5396
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony.lambregts(a)gmail.com 2006-10-06 20:56 -------
Confirming. You can see the problem in the following screenshot
http://appdb.winehq.org/appimage.php?id=2781
Aside from that the tab problem the program seems to work fine.
--
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=5168
------- Additional Comments From kelfe(a)gmx.de 2006-10-06 19:01 -------
dlls/wined3d/device.c IWineD3DDeviceImpl_Reset is the full location of the stub
--
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=5403
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Component|website-bugs |wine-binary
Product|WineHQ Apps Database |Wine
Version|unspecified |0.9.12.
------- Additional Comments From vitaliy(a)kievinfo.com 2006-10-06 18:39 -------
You need to upgrade to latest wine-0.9.15 and retest it.
Thank you.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5403
Summary: Logical Journey of the Zoombinis
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: champreplacemnt(a)yahoo.com
CC: champreplacemnt(a)yahoo.com
The game Logical Journey of the Zoombinis version 1.1 States that it is unable
to initialize the file manager when attempting to run Zoombi32.exe then the app
Zoomb32.exe freezes wine while still using system resources (my wmsysmon is
still showing activity). I am using wine version 0.9.12 on debian etch
(testing). I also tested it on wine version 20050310 on debian sarge with the
exact same results.
--
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=5390
------- Additional Comments From vitaliy(a)kievinfo.com 2006-10-06 18:01 -------
Then something is wrong with your Wine.
If it say it crashed : ACCESS VIOLATION (c0000005) you will have "seh:" lines in
that log file.
Could you check that you have enough space on /tmp?
--
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=5390
xenoterracide(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Diablo 2 Unhandled Exception|Diablo 2 Unhandled Exception
|wine 9.14 |wine 9.15
------- Additional Comments From xenoterracide(a)gmail.com 2006-10-06 17:32 -------
when I run the command as you have specified I don't get any relay.txt and the
relay.log file is like 200+ MB
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
------- Additional Comments From cebratcher(a)gmail.com 2006-10-06 15:34 -------
The WIBU key is only required for Reaktor v3. Versions 4 and 5 don't require
it, but can use it to open v3 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=4051
------- Additional Comments From scott(a)open-vote.org 2006-10-06 15:28 -------
Adrian - Wine has it's own APT repository because Ubuntu universe is frozen near
release time for all bug security fixes.
I received this email about this bug:
Hi Scott,
I have experienced bug 4051 on Ubuntu 06.06 with wine 0.9.15 from
winehq: http://bugs.winehq.org/show_bug.cgi?id=4051
As i'm not signed in to wine bugzilla, i'm sending this to you.
I have gnome as my desktop. Wine is configured to run inside a virtual
desktop window (4th option in winecfg graphics tab is selected)
(a) if I start winecfg and click the audio tab, the complete window of
winecfg vanishes immediately, then a few seconds later, the wine desktop
window disappears: wine exits.
mesage in the terminal window is:
>Creating link /home/martin/.kde/socket-francis.
>can't create mcop directory
file /tmp/ksocket-martin/klauncher
(b) However if I launch the kaffeine KDE multimedia application prior to
running wine, everything is just fine. processes active in connection
with kaffeine are (partial output of ps -ax):
7813 ? Sl 0:00 kaffeine
7815 ? Ss 0:00 kdeinit Running...
7819 ? S 0:00 dcopserver [kdeinit] --nosid --suicide
7821 ? S 0:00 klauncher [kdeinit]
7823 ? S 0:00 kded [kdeinit]
7825 ? S 0:00 /usr/lib/gamin/gam_server
7830 ? S 0:00 kio_file [kdeinit]
note that artsd is NOT running.
(c) Interestingly, even after I exit kaffeine and make sure all of the
associated processes above have terminated, starting wincfg and clicking
audio tab works fine. No crash.
(d) Next step: I manually delete ~/.kde/socket-francis:
[types in terminal window] martin@francis:~$ rm .kde/socket-francis
Starting winecfg again, clicking audio tab: no crash
terminal output is:
>Creating link /home/martin/.kde/socket-francis.
>Created link from "/home/martin/.kde/socket-francis" to
"/tmp/ksocket-martin"
(e) The crashy behaviour reappears after I manually
delete /tmp/ksocket-martin
Same terminal output as in (a)
hope this is helpfull
cheers
Martin
--
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=5402
Summary: Trying to run PhotoStitch 3.1
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bariuspelagic(a)hotmail.com
I was able to install PhotoStitch 3.1 no problem, but I get errors in ntdll when
I try to run it.
I tried looking for an existing bug, but I really haven't a clue what terms to
search for. Sorry if this is a duplicate.
--
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=3668
stefan-tiger(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From stefan-tiger(a)gmx.de 2006-10-06 14:02 -------
OrCAD Runs (->FIXED), but the capture.exe - part doesn't still. See other 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=3667
------- Additional Comments From stefan-tiger(a)gmx.de 2006-10-06 14:00 -------
With wine 0.9.15, this bug still exists, but the application is more useable
since the first entry.
Can someone please confirm 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=5386
------- Additional Comments From ajp(a)princeswalk.fsnet.co.uk 2006-10-06 13:59 -------
I hoped they would... This first compile has now taken 2hrs so far (my PC is
only a 450MHZ PIII with 192 MB RAM)
--
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=5401
Summary: Cannot install The Need for Speed Most Wanted Demo
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan-tiger(a)gmx.de
Cannot install The Need for Speed Most Wanted Demo, see attachment.
--
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=4353
------- Additional Comments From stefan-tiger(a)gmx.de 2006-10-06 13:52 -------
Cannot install Battlefield 2 Demo with wine 0.9.15, see attachment.
--
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=5400
Summary: Tomb Raider Legends Demo installs but doesn't run
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan-tiger(a)gmx.de
Tomb Raider Legends Demo installs but doesn't run. No error at the console :(
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2092
------- Additional Comments From stefan-tiger(a)gmx.de 2006-10-06 13:44 -------
If I start OrCAD Demo 9.1 Capture I get an error, see attachment.
I use wine 0.9.15, build from source under gentoo.
--
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=5399
Summary: LabVIEW installer cannot find the Windows Installer
Service
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan-tiger(a)gmx.de
LabVIEW (http://www.ni.com/labview/) installer cannot find the "Windows
Installer Service", so LabVIEW cannot be installed.
--
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=5386
------- Additional Comments From truiken(a)gmail.com 2006-10-06 13:29 -------
log2(487) = 8.9277, so 9 to be precise :) Plus, the compiles will get faster as
you go.
--
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=5386
------- Additional Comments From ajp(a)princeswalk.fsnet.co.uk 2006-10-06 12:47 -------
I'm giving it a go, but with a reported 487 changes between 0.9.9 (good) and
0.9.12 (bad) it's going to take a long time. I'm on the first compile and it's
taken 45 mins so far... I think will need another 10 compiles to find the point
at which it broke.
--
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=4509
------- Additional Comments From michael(a)stroeder.com 2006-10-06 11:39 -------
Yes, this bug is fixed in 0.9.15. It was still failing in 0.9.14.
Thanks for working on it.
Ciao, Michael.
--
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=4509
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From dank(a)kegel.com 2006-10-06 11:27 -------
I installed version 1.29 with wine-0.9.15, and it seems to be fine.
I tried to reproduce the crash in comment #2, but
couldn't find the "Buchungsjahr eingeben" menu item or button...
The app failed on startup unless msvcp60.dll was present,
so I ran vcredist.exe before installing the app.
After that the app seemed to function properly, even letting
me save and load 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=5386
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5345
------- Additional Comments From dank(a)kegel.com 2006-10-06 10:55 -------
Got a download URL?
I looked for version 6.6 in the list at
http://europe.nokia.com/nokia/0,,79477,00.html
but the closest I could find was version 5.8
(http://europe.nokia.com/nokia/0,,4848,00.html)
and it installed with Wine 0.9.15.
Wine did issue some errors:
err:ole:serialize_param Unhandled marshal type 8205.
err:ole:deserialize_param No handler for VT type 8205!
err:ole:CoGetClassObject no class object {b196b286-bab4-101a-b69c-00aa00341d07}
could be created for context 0x1
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{b196b284-bab4-101a-b69c-00aa00341d07}
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
err:ole:serialize_param Unhandled marshal type 8209.
err:ole:deserialize_param No handler for VT type 8209!
err:seh:setup_exception stack overflow 700 bytes in thread 0014 eip 7ffc2902 esp
7fa80d44 stack 0x7fa81000-0x7fb90000
but the installation completed.
(The app didn't run, 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=5344
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://europe.nokia.com/noki
| |a/0,,79477,00.html
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
Summary|unimplemented function |nokia pc suite 6.8 installer
|setupapi.dll.CMP_WaitNoPendi|problem
|ngInstallEvents called in |
|32-bit code (0x42084053) |
------- Additional Comments From dank(a)kegel.com 2006-10-06 10:36 -------
Installed fine for me with 0.9.15. There were a few
fixme's and err's, but the app installed and ran.
--
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=5388
------- Additional Comments From boeser.wolff(a)web.de 2006-10-06 08:28 -------
When trying to connect to Mankind's servers, the game checks for updates.
Altough I can see the client programm open a socket, sending something and
receiveing something, the error message
"Unexpected Error occured while patching Mankind. (A disk error occured or
C:\Program Files\Mankind have been modified by some other software. Please
reinstall Mankind"
is displayed.
The application then causes a page fault on exit, see
http://bugs.winehq.org/show_bug.cgi?id=4489
--
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=5391
------- Additional Comments From kdekorte(a)yahoo.com 2006-10-06 08:26 -------
ok, I've tried several options running with -w option
1. Unset Allow the window manager to control the windows
This is the best option, but when you click outside of the window, d2 minimizes,
you can at least unminimize it, but you can't use the keyboard within the app
after that
2. Emulate virtual desktop doesn't seem to affect much
3. Checking Allow DirectX apps to stop the mouse from leaving their window does
not appear to do anything.
--
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=5398
Summary: Can't get data from serial line
Product: Wine
Version: 0.9.15.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lcid-fire(a)gmx.net
A Firmware updater for a telecommunication system as well as the configuration
program for it both can't seem to communicate using the serial line.
Both programs gives a error:
err:comm:get_baud_rate tcgetattr error 'Input/Output error'
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3676
Pawel.Rozanski(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |Pawel.Rozanski(a)gmail.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=5311
------- Additional Comments From qingdao33122(a)yahoo.com 2006-10-06 04:51 -------
Created an attachment (id=2609)
--> (http://bugs.winehq.org/attachment.cgi?id=2609&action=view)
Bug compatibility patch
The initial value of iImage and iSelectedImage, which is -1, coincides with
_IMAGECALLBACK. Normally it should be OK as we keep track of a callback mask
for each treeview item. But intermixed with a bug in native comctl32 bad things
can happen such as this one.
If an app never sets the iImage(or iSelectedImage), but queries for this value
anyway with TreeView_GetItem, instead of failing the call, native
implementation just sets the field to 0. This of course is buggy bevavior, but
if we don't set iImage and iSelectedImage explicitly, zero initialization done
in Alloc happens to take care of that.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5396
------- Additional Comments From mike(a)codeweavers.com 2006-10-06 03:01 -------
Please provide an application that shows the bug. Without a way to reproduce
the bug, it is 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=5396
Summary: Tabbed Text
Product: Wine
Version: 0.9.9.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: temp2(a)arrowe.seriouslyinternet.com
Wine 0.9.9 does not process equivalent of Windows API 'TabbedTextOut 'correctly.
Tab stop positions do not line up on adjacent lines of 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=1001
------- Additional Comments From quintok(a)gmail.com 2006-10-06 02:09 -------
>From the article previous pointed to from support.microsoft.com and information
in /include/winerror.h
STATUS_DISCONNECTED = ERROR_DEV_NOT_EXIST = 55
STATUS_NONEXISTENT_NET_NAME = ERROR_DEV_NOT_EXIST = 55
STATUS_ENDPOINT_CLOSED = ERROR_DEV_NOT_EXIS = 55
now I assume that just means it needs:
#define STATUS_DISCONNECTED 55
#define STATUS_NONEXISTENT_NET_NAME 55
#define STATUS_ENDPOINT_CLOSED 55
placed into /include/ntstatus.h
but as this is my first attempt at a bug fix I'll play it safe and post it 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=5395
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|INVALID |
------- Additional Comments From truiken(a)gmail.com 2006-10-06 00:10 -------
This reveals a bug in msi, why should it be closed?
--
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=5395
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-10-06 00:09 -------
Dan would you don't try this total stupid things?
At least install windows for that.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5395
Summary: Windows Vista Upgrade Advisor beta won't install
Product: Wine
Version: CVS
Platform: Other
URL: http://www.microsoft.com/windowsvista/getready/upgradead
visor/default.mspx
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
(Hey, I wanted to find out if my computer would support Vista, ok? :-)
$ ~/wine/programs/msiexec/msiexec /i VistaUpgradeAdvisor.msi
fixme:msi:MsiInstallProductW L"VistaUpgradeAdvisor.msi" (null)
err:msidb:load_string_table string table corrupt?
err:msidb:load_string_table string table load failed! (000218f3 != 000047ef)
--
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=5390
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-06 23:39 -------
Run your program and attach /tmp/relay.txt to the bug:
WINEDEBUG=+tid,+seh,+relay wine program.exe &> /tmp/relay.log && grep -A 20 -B
300 "seh:" /tmp/relay.log > /tmp/relay.txt
--
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=5390
------- Additional Comments From xenoterracide(a)gmail.com 2006-09-06 23:30 -------
I've confirmed that this bug exists in 0.9.15
--
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=5378
dmitry(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From dmitry(a)codeweavers.com 2006-09-06 22:14 -------
The patch has been committed. Closing the bug as 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=4242
------- Additional Comments From dmitry(a)codeweavers.com 2006-09-06 22:12 -------
The patch has been committed. Please close this bug once you have a chance
to confirm that 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=5384
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Other |PC
Summary|Titan Quest demo does not |Titan Quest demo does not
|install with 0.9.15 |install
Version|unspecified |0.9.15.
--
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=5393
------- Additional Comments From cconover(a)ba-zing.com 2006-09-06 19:56 -------
Program crashes when I try to run it. I've attached the output of the debugging.
--
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=5393
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Streets of Sim City Debug |Streets of Sim City crashes
|Output |
------- Additional Comments From mike(a)codeweavers.com 2006-09-06 19:50 -------
Your bug is lacking alot of information. I had to look at the attachment to
find out that the program crashes. Please explain the context of the crash, the
version of Wine, etc.
--
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=5393
Summary: Streets of Sim City Debug Output
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cconover(a)ba-zing.com
Attached debug output
--
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=5389
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)codeweavers.com 2006-09-06 19:37 -------
Please send your bug to the author of ies4linux.
--
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=5388
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|wsaErrno errno 11, (Resource|Mankind: network issue?
|temporarily unavailable) |
------- Additional Comments From mike(a)codeweavers.com 2006-09-06 19:34 -------
What exactly is the program doing wrong? The bug should describe to everybody
what the problem is so we know when we've reproduced it, and when we've solved 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=5372
------- Additional Comments From qingdao33122(a)yahoo.com 2006-09-06 19:30 -------
The test now passes with current cvs 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=5391
------- Additional Comments From the3dfxdude(a)gmail.com 2006-09-06 19:03 -------
Oh, try using a wine desktop with the -w option. I know one of the two works ok.
--
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=5392
Summary: Platfrom SDK fails to install because of unhandled
msiexec option
Product: Wine
Version: 0.9.15.
Platform: All
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=a55b6b43-e24f-4ea3-a93e-40c0ec4f68e5&DisplayLang=en
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: truiken(a)gmail.com
Running wine PSDK_x86.exe brings up a splash screen, then wine's msiexec prints
out it's legal usage. A +process log shows that the setup is trying to call
msiexec like so:
msiexec -i
"http://download.microsoft.com/download/a/5/f/a5f0d781-e201-4ab6-8c6a-9bb4ef…"
As of now, msiexec does not handle the -i option, and changing it to /i doesn't
work because we don't try to download the msi file. Testing is required to
determine the behavior of the -i option (unless it's already known). In any
case, we need to implement downloading of msi files if they are not local.
--
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=5391
------- Additional Comments From kdekorte(a)yahoo.com 2006-09-06 15:22 -------
I am running it with -w option to get it into windowed mode
--
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=5391
------- Additional Comments From the3dfxdude(a)gmail.com 2006-09-06 14:31 -------
Normally you should file seperate bug reports. But #2 is really a window manager
problem, so I won't address that.
I think #1 is Diablo thinks its running fullscreen but then loosing focus and
making itself minimize. Restoring a minimized opengl context I believe is a
known problem. You should really run Diablo 2 with the "-w" switch to make it
handle the windowed mode correctly.
--
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=5391
Summary: Diablo 2 screen issues
Product: Wine
Version: 0.9.14.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kdekorte(a)yahoo.com
On Fedora Core 5 upto date as of Jun 9, 2006
Two Issues (Tested on 0.9.12 thru 0.9.14)
Issue 1: Running Diablo 2 in a window
If you have Diablo 2 running in a window and you click anywhere outside of the
Diablo 2 window, the Diablo 2 window is minimized and there is no way to restore
it. The only way to exit the game is to kill the game
Issue 2: Running Diablo 2 fullscreen
If you run Diablo 2 full screen, the Gnome Top menu bar and bottom menu bar are
still visible
For both issues if you have the ALT key held and you click the mouse it moves
the Diablo 2 window (drag) rather than allowing you to click on the in game item
and pick it up.
--
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=5390
Summary: Diablo 2 Unhandled Exception wine 9.14
Product: Wine
Version: 0.9.14.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xenoterracide(a)gmail.com
trying to run diablo 2 gives me a message of
UNHANDLED EXCEPTION:
ACCESS VIOLATION (c0000005)
this did not occur for me in 9.8 which was the last version i had installed.
will try upgrading to 9.15
this may have been assigned to the wrong component. I'm not really sure which
one it falls under.
--
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=5389
Summary: Error installing digital certificate
Product: Wine
Version: 0.9.15.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rpmohn(a)waxandwane.org
I need to use IE to connect to my office. They issue digital certificates from a
MS server and they will only load on IE. I've tried with several versions of
Wine, but always get a pop-up window error. Latest attempt was with Wine
v0.9.15, ies4linux-2.0beta6. When I run ie6 from the commandline and navigate to
the site in order to download a certificate, here's the pop-up window error:
An unexpected error (0x800700EA) occurred while getting the CSP list.
and here's what's printed on the commandline when that happens:
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:actctx:ActivateActCtx 0xf00baa 0x7fb7a0d4
My OS is
# uname -a
Linux fisher 2.6.16-gentoo-r9 #1 SMP PREEMPT Thu Jun 8 17:17:55 EDT 2006
i686 Intel(R) Pentium(R) 4 CPU 3.00GHz GNU/Linux
Please help!
Thanks -RPM
--
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=5257
tiago.freire(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2481 is|0 |1
obsolete| |
Attachment #2529 is|0 |1
obsolete| |
------- Additional Comments From tiago.freire(a)gmail.com 2006-09-06 11:53 -------
Created an attachment (id=2607)
--> (http://bugs.winehq.org/attachment.cgi?id=2607&action=view)
installation log against wine 0.9.15
--
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=5376
------- Additional Comments From tony_caduto(a)amsoftwaredesign.com 2006-09-06 10:58 -------
As far as I know Delphi 2006 does not run on any version of 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=5384
ns03ja(a)brocku.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Titan Quest demo does not |Titan Quest demo does not
|install with 0.9.14 |install with 0.9.15
--
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.