http://bugs.winehq.org/show_bug.cgi?id=5044
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
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=5079
------- Additional Comments From philip(a)digitalinfinity.biz 2006-17-04 03:20 -------
Sorry, I called it a blocker because it was blocking me from testing the
program. In that regard I felt it was a blocker as the program isn't installing
at all.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5079
------- Additional Comments From philip(a)digitalinfinity.biz 2006-17-04 03:17 -------
Ok... I don't have enough time to finish this regression test. But from what
I've found the install was broken between the 21 and the 23 of March 2006. I
don't have time today to finish finding the exact patch.
I'll try to get it pin pointed a little later. Hopefully however you will be
able to extrapolate from there which patch it is. If I don't hear back about
this I'll finish the regression analysis.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4987
------- Additional Comments From amd(a)store20.com 2006-17-04 02:46 -------
Could this problem be caused by color depth issues? I tried it under VMware and
there it refused to work when bit-depth was 32bits. Unfortunately I couldn't
test other bit-depths.
Seems like the game requires the display to be at least 800x600-16bits.
Otherwise it doesn't start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5081
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.gamehouse.com/gam
| |edetails/?game=Solitaire1&na
| |vpage=downloadgames&AID=
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-17-04 01:46 -------
Confirming + added download link
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2398
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 23:48 -------
Now I know the code I gave you is C++ but you can do it in C as well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2398
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 23:27 -------
I'd like to recomend and observer pattern that may solve your problem here in
getting this stuff to work. This way you can have the child window update when
the parent window updates. You can have as many windows update as you want. And
you can have an individual child update by creating a separate update window for
it. Hope this helps.
class Subject;
class Observer {
public:
virtual ~Observer();
virtual void update(Subject* theChangedParent) = 0;
protected:
Observer();
}
class Subject {
public:
virtual ~subject();
virtual void attach(Observer*);
virtual void detatch(Observer*);
virtual void notify();
protected:
Subject();
private:
List<Observer*> _observers;
};
void Subject::attach(Observer* obj) {
_observers.Append(obj);
}
void Subject::detach(Observer* obj) {
_observer.Remove(obj);
}
void Subject::notify() {
ListIterator<Observer*> i(&_observers);
for(i.First(); !i.IsDone(); i.Next()) {
i.CurrentItem() -> update(this);
}
}
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2398
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 22:42 -------
I agree with willie on this issue of using a window for an openGL control. While
it is true that its not desirable to use a separate window for regular controls
seeing as this isn't the way microsoft does it in their API. It is necessary for
some controls in windows. Not many. They are the exceptions. GL viewports is
one of them. So are certain activeX controls and so are controls to display
video in movie players.
Let me say the best solution is to implement GL viewports as a window. I agree
that most of the controls don't need it. IE no point in allocating an entire
window for a button. Even if this is how its done in X, Its not done that way in
Windows. But viewports are one area where a window is necessary. Not just GL
viewports but also view ports for most media players. And it would be useful for
some activeX controls to have those implemented as a separate window in X.
I know you guys are probably going to frown about the whole idea of video
players being in a view port but you won't be able to get some of the
functionality in those programs without it. For instance, right clicking on the
control and having it go to full screen. Thats usually a window that get
expanded to take up the whole screen. It requires a separate window. So this
may kill a few birds with one stone. Just food for thought.
I suggest taking some of the old WM code and incorperating it in with the new
way of doing things. A hybrid solution seems to be the best solution here. Its
not a hack in my opinion.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5081
Summary: GameHouse Solitaire: "Unhandled exception: page fault on
read access..." in ntdll.dll
Product: Wine
Version: 0.9.11.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wpmcnamara(a)yahoo.com
When starting GameHouse Solitaire 1, application crashes with the following error:
Unhandled exception: page fault on read access to 0x6e0aa040 in 32-bit code
(0x6e0aa040).
Error appears to occur regardless of whether native or builtin dlls are used.
Address of error is the same for every crash. Application never makes it to a
running state before crash occurs.
-------------------
Linux loki 2.6.12-10-k7 #1 Sat Mar 11 16:59:38 UTC 2006 i686 GNU/Linux
Kubuntu 5.10
0.9.11~winehq1-1
http://www.gamehouse.com/gamedetails/?game=Solitaire1&navpage=downloadgames…
lori@loki:~/.wine/drive_c/Program Files/GameHouse/Solitaire$ wine Solitaire.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=5079
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
Keywords| |regression
Summary|Office 2000 will not install|Office 2000 will not install
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-04 20:22 -------
Sorry but this is not blocker. Especially that it works fine. Just doesn't installs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5071
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Application crashes after |Legacy crashes after the
|the splash screen |splash screen
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5080
jpakkane(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5080
Summary: Shadowgrounds launcher GUI is broken
Product: Wine
Version: CVS
Platform: PC
URL: http://shadowgroundsgame.com/en/demo.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpakkane(a)yahoo.com
When I start the launcher for Shadowgrounds, the dialog looks all wrong. It is
too small, so some widgets overflow. All selection widgets are empty and buttons
have incorrect texts. Will attach a screenshot.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-16-04 16:21 -------
There is already a bugreport about this: Bug 3108
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
------- Additional Comments From emerzon(a)gmx.net 2006-16-04 16:18 -------
I think a new bug report should be open about this issue with the windows. I
also had the same problem with some other apps, so it might be a good Idea.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4925
jpakkane(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From jpakkane(a)yahoo.com 2006-16-04 16:13 -------
Closing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4925
jpakkane(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jpakkane(a)yahoo.com 2006-16-04 16:13 -------
I tested with today's CVS and this bug has been fixed. 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=4956
------- Additional Comments From Gernot.Frisch(a)Dream-D-Sign.de 2006-16-04 15:26 -------
Which version? I have 0.9.11 (debian unstable) now, the bug is reproducable.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 13:23 -------
>From what I understand of the ICCC standard. There is a way for you to set a
flag on a window to have the WM ignore the window entirely. I believe thats part
of the convention.
But its been a while since I read that document. And I didn't understand a whole
lot of it when I did. But I do remember that flag being there. If the window
managers are ICCC compatible then that would be your work around.
However. Thats assuming that its the window manager in X doing this. Its nothing
more then a flag that gets set on the actual window.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5079
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 13:10 -------
Created an attachment (id=2298)
--> (http://bugs.winehq.org/attachment.cgi?id=2298&action=view)
Backtrace of the installer executing when its not working.
Program appears to go through the entire install process. However few files are
actually installed. Including the executables!!!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5079
Summary: Office 2000 will not install
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: philip(a)digitalinfinity.biz
Screens look like they go through the entire installation. However when we look
back in the install tree there are no executables and DLL's installed.
Something broke between 0.9.10 and 0.9.11. It also doesn't work in 0.9.12
It also takes an increadibly short period of time to go through the entire
installation.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4364
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 12:40 -------
Ok in that case the problem has been rectified in the last release. I'll file
another bug for the installer. I installed 0.9.11 with an installation from
0.9.10 and it fixed it. Office was no longer crashing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4364
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 12:39 -------
Ok in that case the problem has been rectified in the last release. I'll file
another bug for the installer. I installed 0.9.11 with an installation from
0.9.10 and it fixed it. Office was no longer crashing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4762
------- Additional Comments From dank(a)kegel.com 2006-16-04 11:57 -------
Dang. I can't find the slashdot article -- that'll teach me
to not include urls.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
david(a)ion.lu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From david(a)ion.lu 2006-16-04 11:32 -------
you were absolutely right
sorry, but I had no idea about this. maybe you should add it as a comment to the
appdb?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
------- Additional Comments From emerzon(a)gmx.net 2006-16-04 10:11 -------
The first time you start the game, you'll have to hit "Agree" on the Microsoft EULA.
On Wine, the window containing the EULA and "Agree" button will be hidden under
the AoM splash screen, so you'll have to use ALT+A into the hidden window.
Make sure that this isn't the problem you're facing before posting a bug report.
Regards,
Emerson
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5027
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Wine crashes without warning|Baldurs Gate crashes without
| |warning
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5027
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-04 06:55 -------
If you can generate any backtraces that would be really helpfull.
Try running it under winedbg.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4009
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mccpat(a)gmail.com
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-04 06:48 -------
*** Bug 5067 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=5067
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-04 06:48 -------
Duplicate
*** This bug has been marked as a duplicate of 4009 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4364
------- Additional Comments From vitaliy(a)kievinfo.com 2006-16-04 06:41 -------
Philip please keep this bug to "Office 2000 apps crash on startup". It has
nothing to do with installing Office 2000. If you have some problems with that
open a new bug, or add more comments to already open one.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4789
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 05:45 -------
Sorry it took so long to get back to 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=948
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |UNCONFIRMED
Resolution|WORKSFORME |
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 05:44 -------
Hmmm... I wasn't installing dreamweaver MX. I was installing Ultra Dev 4.
And even today it doesn't 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=5045
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 05:39 -------
Created an attachment (id=2297)
--> (http://bugs.winehq.org/attachment.cgi?id=2297&action=view)
Backtrace for iTunes and Quicktime Installer.
The program in this case never crashes out right but the program never ends
either. When it gets to the quick time installation the install process
continuously cycles through the installation. It displays the progress bar over
and over again.
When looking at the back trace its having trouble with some complex type.
This is an improvement above what was there before. It wasn't even initializing
the driver in install shield before. So there is some progress here. I think we
are looking at a different bug here.
Files are not getting copied. I'm wondering did someone change the code after
0.9.10. Because ever since I'm finding files aren't getting copied to the right
places. This isn't the only place I'm seeing this. I'm also seeing it in the
office installer. Although this is giving completely different error from 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=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 05:14 -------
Problem with directX screen when a project is loaded appears to happen only when
we move the mouse over the view windows. It seems to resize the window when
this happens.
I tried turning off the double buffering in wine but it didn't seem to have a a
positive effect. Although now the teapot doesn't render anymore.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 04:40 -------
Created an attachment (id=2295)
--> (http://bugs.winehq.org/attachment.cgi?id=2295&action=view)
Test run for directX using 0.9.12 version of wine.
This is a major change in the bugs in this program. The directX screen is now
opening. I even get a picture on the screen for some of the projects. Whats
happening though is that the program is not useable. Its almost like the window
manager grabs the window for the directX component and resizes it. Could be an
issue with window management.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 04:35 -------
Ok.. getting render monkey to open a directX project is now working. Progress is
definetly being made here. However, the program is far from usable. DirectX
projects come up on the screen in a strange way.
I believe I've managed to reproduce the same problems that was happening in
comment #16.
I'm adding the backtrace from that test run.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4895
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-16-04 04:27 -------
This is fixed in current cvs by Jan Zerebecki's patch . thx
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4364
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 04:21 -------
Created an attachment (id=2294)
--> (http://bugs.winehq.org/attachment.cgi?id=2294&action=view)
Backtrace of MS Office install program when attempting to install it with a
fresh wine directory.
During this process the program acts like it is completing the entire
installation. But after its gone through and you check the directories for the
executable you find that the executables and dlls for office were never
installed.
The installer produces the the backtrace that I attached to this comment.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4364
------- Additional Comments From philip(a)digitalinfinity.biz 2006-16-04 04:17 -------
This bug is still happening on fedora core 4 in version 0.9.12. First the
installer is definetly not working. Even if I want to cancel the installation at
startup. If I press the cancel button the installer doesn't close out.
Second the installer goes through the entire install process. It says that the
installation is complete. When I go to check to see if the files are installed.
They aren't installed at all.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4956
------- Additional Comments From qingdao33122(a)yahoo.com 2006-16-04 01:39 -------
I've patched msvcrt and compiling in IDEs lik GLBasic should work now.
To compile from command line, you have to set several environment variables
with regedit.
Do a Google mingw GCC_EXEC_PREFIX
Environment variables are at location
HK_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5070
pfortin(a)pfortin.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From pfortin(a)pfortin.com 2006-16-04 01:14 -------
Bug in application; can workaround by toggling admin/user radio buttons.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are 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
Summary: Heroes V deom setup doesn't recognize setup.exe
Product: Wine
Version: 0.9.12.
Platform: PC
URL: http://www.gamedaily.com/download/info/?packageid=007870
1137
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
When the setup program for Heroes of Might and Magic V reaches 100%, it pops
up a window asking for 'setup.exe'. Looking into the folder where it tries to
find it, I find that the file is there, and it also has the right 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=5077
Summary: X error when starting Heroes V
Product: Wine
Version: 0.9.12.
Platform: PC
URL: http://www.gamedaily.com/download/info/?packageid=007870
1137
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
The demo of Heroes of Might and Magic V switches to full-screen mode and
displays an image witht the game logo, then crashes, giving the following X
error.
X Error of failed request: GLXBadDrawable
Major opcode of failed request: 143 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 1604
Current serial number in output stream: 1604
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-15-04 13:49 -------
Could you please upgrade to wine-0.9.12; the demo of this game also didn't start
in 0.9.11 but that's fixed in wine-0.9.12, so you might be lucky
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
Summary: Age of Mythology will not start
Product: Wine
Version: 0.9.11.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: david(a)ion.lu
Installation went fine, but the game won't start. I'm using the fairlight no-cd
crack from megagames. This is the output that repeats itself while the AoM
splash screen is shown.
fixme:imm:ImmGetDefaultIMEWnd ((nil) - 0x10026 0x7fd3a510 ): semi-stub
err:ole:CoGetClassObject class {ebb08c45-6c4a-4fdc-ae53-4eb8c4c7db8e} not registered
err:ole:CoGetClassObject no class object {ebb08c45-6c4a-4fdc-ae53-4eb8c4c7db8e}
could be created for for context 0x1
fixme:ole:CoCreateInstance no classfactory created for CLSID
{ebb08c45-6c4a-4fdc-ae53-4eb8c4c7db8e}, hres is 0x80040154
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3703
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 09:09 -------
( Ok.
[hurtta@jalmari hurtta]$ wineprefixcreate
err:wgl:wgl_initialize_glx glx_version as 1.2 and GLX_SGIX_fbconfig extension
is unsupported. Expect problems.
/home/hurtta/.wine updated successfully.
[hurtta@jalmari hurtta]$
[hurtta@jalmari hurtta]$ winecfg
[hurtta@jalmari hurtta]$
)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4968
------- Additional Comments From Speeddymon(a)gmail.com 2006-15-04 09:05 -------
Well, I dont know about the link thing, but I did only say that I _think_ the
maintainers will actually put the dependency in their packages. If they didn't
do it, you might want to contact them directly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3703
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 08:55 -------
(Side note only).
[hurtta@jalmari hurtta]$ wineprefixcreate
cp: tiedoston "/usr/local/bin/../share/wine/wine.inf" tilaa ei voi lukea: No
such file or directory
[hurtta@jalmari hurtta]$
Wine is installed under /usr/local/wine but there is symbolic links
form /usr/local/bin/ to /usr/local/wine/bin/
[hurtta@jalmari hurtta]$ ls -la /usr/local/bin/wineprefixcreate
lrwxrwxrwx 1 root root 28 huhti 15 16:05
/usr/local/bin/wineprefixcreate -> ../wine/bin/wineprefixcreate*
[hurtta@jalmari hurtta]$
Seems that I need replace these links with small scripts. Wine
(wineprefixcreate at least) seems now be confused about these links.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3703
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 08:46 -------
Adding note for Comment #9:
Only winecfg messages on terminal was:
---- start quote ----
[hurtta@jalmari hurtta]$ winecfg
Warning: the specified Windows directory L"c:\\windows" is not accessible.
Warning: the specified System directory L"c:\\windows\\system32" is not
accessible.
Warning: the specified Windows directory L"c:\\windows" is not accessible.
Warning: the specified System directory L"c:\\windows\\system32" is not
accessible.
[hurtta@jalmari hurtta]$
--- end quote ----
(You see from the picture that I was just fixing that C: ... )
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3703
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 08:43 -------
Created an attachment (id=2291)
--> (http://bugs.winehq.org/attachment.cgi?id=2291&action=view)
Wine 0.9.12 installation log
- Run make unistall on previous version of wine
- Changed prefix on ./tools/wineinstall from /usr/local to /usr/local/wine
- Run ./tools/wineinstall as README file states
I'm not sure that there important messages on configure. Nothing
what I recognize (no flames, plase).
There is following messages:
---- start quote ----
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxml-2.0' found
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxml-2.0' found
checking libxml/parser.h usability... no
checking libxml/parser.h presence... no
checking for libxml/parser.h... no
Package libxslt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxslt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxslt' found
Package libxslt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxslt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxslt' found
---- end quote ----
Nothing else what looks like complain.
There is of course many messages with starting "Checking" and ending "no",
but these do not look like complains.
On building there is messages like
--- start quote ---------
fontforge -script ../fonts/genttf.ff courier.sfd courier.ttf
Copyright (c) 2000-2006 by George Williams.
Executable based on sources from 14:01 25-Jan-2006.
LD_LIBRARY_PATH="../libs/unicode:$LD_LIBRARY_PATH" ../tools/sfnt2fnt
courier.ttf 13 1255 96 128 8
Missing glyph for char 008a
Missing glyph for char 008c
Missing glyph for char 008e
---- end quote ----
and so on. I mentioned these already.
But should wine include all characters which are use by wine itself
(ie. winecfg)?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3703
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 08:23 -------
Created an attachment (id=2290)
--> (http://bugs.winehq.org/attachment.cgi?id=2290&action=view)
Picture of winecfg fron wine 0.9.12
"NI" should be "ÄÄNI"
"LIS" should be "LISÄÄ"
"N YT LIS ASETUKSET" should be "NÄYTÄ LISÄASETUKSET"
"N YT PISTETIEDOSTOT" should be "NÄYTÄ PISTETIEDOSTOT"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3703
hurtta+wine2(a)leija.mh.fmi.fi changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.11. |0.9.12.
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 08:17 -------
Also in 0.9.12
Mandrake Linux release 9.2 (FiveStar) for i586
Comment #3:
| could you please check out the winecfg Resource files and send us a patch
| about missing names
To what files you are refering?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4968
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 07:55 -------
( wrong URL on clipboard? -- it was supposed to be same as Comment #7 --
ie. 046196.html -- I do not know from where that 046178.html come --
but whatever ... )
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5075
Summary: GTA2 Doesn't work fullscreen, low performance
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eldad(a)fogrefinery.com
GTA2 doesn't work fullscreen although it is configured to do so.
Gameplay is very slow, though -opengl is used.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5074
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Component|wine-kernel |wine-misc
Ever Confirmed| |1
Keywords| |download
Summary|Crash in Decl2005.exe |msxml:Crash in Decl2005.exe
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-15-04 07:15 -------
Confirming the bug. After copying a native msxml3.dll _and_ msxml3r.dll into
~/.wine/drive_c/windows/system32/ and ran by WINEDLLOVERRIDES="msxml3=n" wine
Decl2005.exe it starts up 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=4968
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-15-04 07:11 -------
> this is a general note for anyone reading this bug who is having the same
> problem: I think that since fontforge is now a known dependency,
Well, is it ?
README from wine 0.9.12 says just:
----- startquote -----------
Build tool requirements:
On x86 Systems gcc >= 2.7.2 is required.
Versions earlier than 2.7.2.3 may have problems when certain files
are compiled with optimization, often due to problems with header file
management. pgcc currently doesn't work with Wine. The cause of this problem
is unknown.
Of course you also need "make" (most likely GNU make).
You also need flex version 2.5 or later and bison.
---- endquote ------------
I do not bother to file bug about that. It just result flaming.
Not when attitude is like
http://www.winehq.org/pipermail/wine-devel/2006-April/046178.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=2795
------- Additional Comments From verynotbad(a)gmail.com 2006-15-04 06:49 -------
Success!
The patch helped! When will this make it in to the main trunk?
Although, with WINE 0.9.12 the startup now complains with the following
error message (clicking OK seems to continue as normal):
Access violation at address 7FFBD43E in modules 'ntdll.dll'. Read of
address 00000000.
But that's another issue, I guess.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3565
jeremielapuree(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jeremielapuree(a)yahoo.fr 2006-15-04 05:36 -------
Great!!It works now (with wine cvs dated from 2006-04-15)!!
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2795
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-15-04 02:39 -------
Created an attachment (id=2289)
--> (http://bugs.winehq.org/attachment.cgi?id=2289&action=view)
quick patch
Hi Boky, i cannot get that program running as i do not understand Slovenian
language :). Could you instead try if the attached patch works (it's a very
quick job, it's just to see if it works)? It fixes 2 "cannot open avi" bugs in
the SamsungUsbdriver installer. That program calls 2 other avi's with ID 0x096
and 0x0a1.
Apply patch with "patch -Np3 -i patch.diff" in wine's source tree and
recompile. Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5034
------- Additional Comments From hannibal(a)megapolis.pl 2006-14-04 20:16 -------
Created an attachment (id=2288)
--> (http://bugs.winehq.org/attachment.cgi?id=2288&action=view)
[TEST ONLY] Fix OpenFile width
I found out that adding flag SWP_SHOWWINDOW to SetWindowPos in
ArrangeCtrlPositions fix dialog size. Why, i don't know, you should investigate
it. I haven't enough knowlege about code to do this.
But this is not the end of troubles. When we have already resized main dialog
window, we need also move or resize standard controls. And here is a problem -
veritcal coordinate of it are broken - as you can see after applying this
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=5072
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5072
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-14-04 16:38 -------
Oops, already found the cause, i had a native cfgmgr32.dll in system32:
trace:loaddll:load_builtin_dll Loaded module
L"c:\\windows\\system32\\cfgmgr32.dll" : builtin
trace:loaddll:free_modref Unloaded module L"c:\\windows\\system32\\cfgmgr32.dll"
: builtin
trace:loaddll:free_modref Unloaded module L"Z:\\tmp\\MCCIDetect.dll" : native
trace:loaddll:load_native_dll Loaded module
L"C:\\windows\\system32\\CFGMGR32.dll" : native
After removing this dll the bug is gone... Sorry about the noise :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5073
Summary: winecfg crashes on audio tab due to nonexistant socket
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexander.heinlein(a)web.de
Hi.
When activating the audio tab in winecfg, wine wants to access /tmp/ksocket-
$USER and dies with "Link points to "/tmp/ksocket-scytheman"" and "can't create
mcop directory". But i do not have KDE installed (only KDM), which probably
would create this directory. So i have to manually create the directory /tmp/
ksocket-$USER to let the audio tab in winecfg not crash.
This bug exists at least since 0.9.10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5072
Summary: Regression: EAccessviolation in SamsungUSBdriver
Product: Wine
Version: 0.9.11.
Platform: PC
URL: http://img.anycall.com/contents/upload/i_world/i_data/Sa
msungUSBDriver.zip
OS/Version: Linux
Status: NEW
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, i know this driver won't work in wine most likely, but the application
should start at least. I tried to investigate the "can not open avi" bug with
this application (bug 2795), but since wine-0.9.11 it pops up a messagebox:
"EAccesviolation". After a regresion test i found this commit to be the cause:
http://www.winehq.org/pipermail/wine-cvs/2006-March/021700.html
Since this patch the installer fails immediately with the above mentioned error.
I can attach any debugtraces if i'd know which ones are important :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5071
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P1 |P2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5071
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4992
------- Additional Comments From thiswes(a)charter.net 2006-14-04 14:44 -------
I have to disagree with the last comment. Rhapsody 2.1 still works with wine
0.9.7, so the problem seems to be a regression within wine. This is the main
reason I use wine so I hope someone can figure this out. Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4967
noway(a)nowaysoft.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.11. |0.9.12.
------- Additional Comments From noway(a)nowaysoft.com 2006-14-04 14:18 -------
I have just update wine to 0.9.12 and this bug is still here.
However, i found a small workaround: you can hold CTRL down to un-select others
mails and the preview panel back.
I got these errors too, i am still not sure if they are related or not:
err:systray:delete_icon invalid tray icon ID specified: 1063d
err:x11drv:X11DRV_CreateWindow invalid window width -286
err:statusbar:StatusWindowProc unknown msg 0530 wp=0000 lp=00000000
err:header:HEADER_WindowProc unknown msg 0530 wp=0000 lp=00000000
Regards,
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5071
Summary: Application crashes after the splash screen
Product: Wine
Version: 0.9.11.
Platform: PC
URL: http://www.millenniacorp.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmoufarrege(a)gmail.com
The application is installed in virtual c:\Legacy\Legacy.exe
The application is called as wine "c:\Legacy\Legacy.exe"
The splash screen comes up and an an exception error pops up:
Received an error in frmMDIMain. Please report this problem to
Support(a)MillenniaCorp.com
Error 458: Variable uses an Automation type not supported in Visual Basic
Would you like to TRY IT AGAIN?
The terminal shows many FixMe errors.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are 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 Speeddymon(a)gmail.com 2006-14-04 13:19 -------
Alexander, that isnt technically an arts bug, but an issue with winecfg. What
we need to do instead of crashing due to that is check for the existence of the
file first, so that if it doesn't exist, then we don't probe for arts.. Could
you file a separate bug for this? Just make the summary "winecfg crashes on
audio tab due to nonexistant socket".
Thanks
I will forward this issue to the devel list as it should be fairly trivial to 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=5070
Summary: registration screens echo input; but data not passed to
application
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pfortin(a)pfortin.com
Trying to install North Carolina RealFast forms (Real Estate forms). I can
input registration data and see it echoed (only in uppercase in case that's
significant); but the application complains that no data has been entered at all...
I can email the installation executable which has a demo installation 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=5069
------- Additional Comments From pfortin(a)pfortin.com 2006-14-04 12:45 -------
Thanks! The InstallShield now stays up, though _behind_ the other screens...
I tried uploading the installation executable; but it's too big... I can e-mail
to someone if it'll help...
The problem now is that the installation requires the use of upper/lower case;
but I can only input upper case regardless of anything I try... All Wine
screens (incl. winecfg) display a terrible uppercase-only font... Checking
existing font bugs... Thanks!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5069
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From truiken(a)gmail.com 2006-14-04 12:35 -------
Duplicate.
*** This bug has been marked as a duplicate of 4728 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4728
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |pfortin(a)pfortin.com
------- Additional Comments From truiken(a)gmail.com 2006-14-04 12:35 -------
*** Bug 5069 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=5069
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-14-04 12:18 -------
Run it in a virtual desktop (in winecfg under the graphics tab) That should
solve the problem i guess
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5069
Summary: installshield wizard won't get out of way
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pfortin(a)pfortin.com
Trying to install RealFast forms (Software for NC Real Estate agents). The
InstallShield (IS) windows come up and stick around. For some time, I thought
this was as far as the install would go; but today, I noticed another windows
behind this one (just 1-2 pixels above the IS window. With Alt+mouse, I was
able to drag it out from under the IS window... I was then able to go through
several registration screens, each having to be pulled around the sticky IS window.
Unfortunately, the last window must be smaller than the IS window and therefore
no way to get at it.
Is there a workaround to clobber just the IS window? I'll attach a screenshot
and the installation software (it has a demo mode). I wouldn't be surprised
that this software's installation is buggy; but it works on all versions of
Windows AFAIK.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5067
madewokherd(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |madewokherd(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=5067
------- Additional Comments From madewokherd(a)gmail.com 2006-14-04 11:09 -------
The issue with the demo may be bug 4009, which would mean that the game's menu
really is there (and you can select things with the mouse), but you can't see
it. If that's it, there's a hacky patch you can apply to the wine source that
should make the menu work for now (but the demo still isn't playable here, and
I've given up because it's known to not work properly on win2k/xp). :/
Does anything else not work properly in the full version before you try to
access the weapons menu (I'd expect to see bug 4009 here too)? What version of
Worms: Armageddon do you have? Have you downloaded and installed any updates or
patches, and if so which ones? You should get the latest update from
wa.team17.com. Without it, W:A may crash even on windows.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4051
------- Additional Comments From alexander.heinlein(a)web.de 2006-14-04 07:17 -------
Hi.
I encounter the same issue. wine wants to access /tmp/ksocket-$USER, but i do
not have KDE installed (only KDM) and do not use arts (arts isn't even
installed, only some library headers which i can't uninstall because of SDL) or
any other soundserver, but hardwaremixing. So i have to manually create the
directory /tmp/ksocket-$USER to let the audio tab in winecfg not crash.
I tested this with wine 0.9.10 and 0.9.11.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |tasklist
Summary|If you Right Click delete |Deleting files from a window
|files then the are files |in wine doesn't send them to
|lost forever!! |the Trash
------- Additional Comments From Speeddymon(a)gmail.com 2006-14-04 06:00 -------
I agree, it will be a big plus. I am going to rename this bug to something a
little more eye-catching (that isnt so scary looking lol).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5066
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From Speeddymon(a)gmail.com 2006-14-04 05:57 -------
Do you have AbiWord installed? I ask because this looks similer to another
problem someone has that appeared after they installed AbiWord.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
------- Additional Comments From info(a)jnmedia.net 2006-14-04 05:39 -------
well thanks for seeing it as a buy, i agree it should be. i know it could be
seen as the users fault but we need a degree of trash bin safety when using wine
seriously or it just makes the use of wine less valid and more unsafe if you're
using it professionally.
i hope one day it will use the linux trash bin, that would be great.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2795
------- Additional Comments From mike(a)codeweavers.com 2006-14-04 04:33 -------
Leonardo Pinto's original problem is the same as #4657. Perhaps there are other
AVIs missing from shell32?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are 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 julliard(a)winehq.com 2006-14-04 03:44 -------
I'd say the most likely cause is that we try to enter the critical
section after it has been deleted, most likely because
DSDB_PCMCallback gets called for a freed object. DSDB_DestroyMMAP
needs to disable the callback before destroying the object.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2795
------- Additional Comments From verynotbad(a)gmail.com 2006-14-04 03:32 -------
Sure, application in question (in my case) is PhotoOrder - one of online digital
photo developers in Slovenia uses it.
More info here:
http://www.dm-drogeriemarkt.si/razvijanje_fotografij.php
Direct download here:
http://www.photo.creativ.si/download/10/PhotoOrder_10_25.exe
It's in slovenian and you need to register before using it. If you need any
additional info (i.e. transations :-) ), please say so.
The problem arises when you try to add (="Dodaj") a picture. I'm guessing it
tries to show some user-friendly MessageBox about "Addig your picture" and fails
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=5056
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[ddraw/dsurface/main.c] |Feeding Frenzy Two crashes
|LPRECT parameters for |
|Main_DirectDrawSurface_Lock |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5056
------- Additional Comments From nospam(a)thenerdshow.com 2006-14-04 02:27 -------
Created an attachment (id=2284)
--> (http://bugs.winehq.org/attachment.cgi?id=2284&action=view)
WINEDEBUG='+ddraw' ./FeedingFrenzyTwo.exe &> log
The game throws a stack overflow exception at random intervals during the
startup phase. At one point I got as far as entering my character name. I
have little experience with this so I'm attaching the complete +ddraw log. The
interesting parts are below, expecially the reference to lprect 633x0-646x0
trace:ddraw:Main_DirectDrawSurface_Lock locked surface returning description :
- DDSD_CAPS : DDSCAPS_OFFSCREENPLAIN DDSCAPS_SYSTEMMEMORY
- DDSD_HEIGHT : 600
- DDSD_WIDTH : 800
- DDSD_PITCH : 3200
- DDSD_LPSURFACE : 0x10f23a20
- DDSD_PIXELFORMAT : ( DDPF_RGB , RGB bits: 32, R 00ff0000 G 0000ff00 B
000000ff)
trace:ddraw:Main_DirectDrawSurface_Unlock (0x10083288)->Unlock((nil))
trace:ddraw:Main_DirectDrawSurface_Lock
(0x10083288)->Lock(0x1025f738,0x10a888cc,00000001,(nil))
trace:ddraw:Main_DirectDrawSurface_Lock - locking flags : DDLOCK_WAIT
trace:ddraw:Main_DirectDrawSurface_Lock lprect: 585x471-595x481
trace:ddraw:Main_DirectDrawSurface_Lock locked surface returning description :
- DDSD_CAPS : DDSCAPS_OFFSCREENPLAIN DDSCAPS_SYSTEMMEMORY
- DDSD_HEIGHT : 600
- DDSD_WIDTH : 800
- DDSD_PITCH : 3200
- DDSD_LPSURFACE : 0x10f408a4
- DDSD_PIXELFORMAT : ( DDPF_RGB , RGB bits: 32, R 00ff0000 G 0000ff00 B
000000ff)
trace:ddraw:Main_DirectDrawSurface_Unlock (0x10083288)->Unlock((nil))
trace:ddraw:Main_DirectDrawSurface_Lock
(0x10083288)->Lock(0x1025f738,0x10a888cc,00000001,(nil))
trace:ddraw:Main_DirectDrawSurface_Lock - locking flags : DDLOCK_WAIT
trace:ddraw:Main_DirectDrawSurface_Lock lprect: 633x0-646x0
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
fixme:dbghelp:MiniDumpWriteDump NIY MiniDumpWithDataSegs
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=35280 <
primary_done=35284)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=31752 <
primary_done=31756)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=31752 <
primary_done=31756)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=24696 <
primary_done=24700)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=24696 <
primary_done=24700)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=17640 <
primary_done=17644)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=3528 <
primary_done=3532)
fixme:dsound:DSOUND_MixOne problem with underrun detection (mixlen=3528 <
primary_done=3532)
err:dsound:DSOUND_MixOne underrun on sound buffer 0x165e6fa0
fixme:dbghelp:sffip_cb NIY on
'c:\data\dev\sprout\Release\FeedingFrenzyTwo\Mainline\FeedingFrenzyTwo\FeedingFrenzyTwo-saf-instrument.pdb'
fixme:dbghelp:sffip_cb NIY on 'shlwapi.pdb'
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file ole32.dbg ("\x03")
fixme:dbghelp:sffip_cb NIY on 'C:\Lego\opt\WININET.pdb'
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file dll\crypt32.dbg
("\x03")
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file dll\msoss.dbg ("\x03")
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file rpcrt4.dbg ("\x03")
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file oleaut32.dbg ("\x03")
wine: Unhandled page fault on read access to 0x00000000 at address 0x4462e8
(thread 000d), starting debugger...
fixme:dbghelp:sffip_cb NIY on
'c:\data\dev\sprout\Release\FeedingFrenzyTwo\Mainline\FeedingFrenzyTwo\FeedingFrenzyTwo-saf-instrument.pdb'
fatal flex scanner internal error--end of buffer missed
wine client error:d: write: Bad file descriptor
wine client error:d: write: Bad file descriptor
[1000 duplicate lines removed]
wine client error:d: write: Bad file descriptor
wine client error:d: err:seh:setup_exception stack overflow 604 bytes in thread
000d eip 4f563105 esp 10150da4 stack 0x10151000-0x10260000
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5049
------- Additional Comments From dragoran(a)feuerpokemon.de 2006-14-04 02:05 -------
ok will look at this.
can you try aquamark and see if it works 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=5049
------- Additional Comments From ns03ja(a)brocku.ca 2006-14-04 01:55 -------
See Bug 4973 about the crash after the first test is run in 3DMark 2003. I
am also running it on AMD64 without the crash you've seen, so I don't
think that's the issue.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5049
------- Additional Comments From dragoran(a)feuerpokemon.de 2006-14-04 01:47 -------
no it won't help here.
tryed 3dmark 03 to the first test runs fine than it fails with :
wine client error:18: write: Bad file descriptor
wine client error:18: write: Bad file descriptor
wine client error:18: write: Bad file descriptor
wine client error:18: write: Bad file descriptor
wine client error:18: write: Bad file descriptor
wine client error:18: write: Bad file descriptor
wine client error:18: write: Bad file descriptor
wine client error:18: err:seh:setup_exception stack overflow 804 bytes in thread
0018 eip f7e93105 esp 7cbc5cdc stack 0x7cbc6000-0x7ccd6000
was on ext3 md raid.
can this be because of a x86_64 sys?
anyway what does this message mean:
wine client error:18: write: Bad file 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=5049
ns03ja(a)brocku.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ns03ja(a)brocku.ca
------- Additional Comments From ns03ja(a)brocku.ca 2006-14-04 01:31 -------
I have seen this error when trying to run 3DMark 2003 (dies part way
through loading the first test) when Wine is set to Windows 2000, in that
case, setting Wine to Windows 98 solves the problem. See if that is the
case here too.
I was using local non-RAID ext3 partitions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4973
------- Additional Comments From ns03ja(a)brocku.ca 2006-14-04 01:02 -------
This bug appears to affect 3DMark 2003 as well. The behaviour is the
same as with 3DMark 2001. When trying to progress to the next test,
3DMark 2003 crashes. Removing the patch from above makes 3DMark
2003 not crash between tests.
In the case of 3DMark 2003, this is much more annoying though, as in the
free version, you cannot choose specific tests to run, you must run all the
way through from start to finish (which of course doesn't work for us right
now).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5068
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://www.secondlife.com |http://www.secondlife.com
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 21:22 -------
Bug is reproduceable every 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=5068
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 21:20 -------
Created an attachment (id=2283)
--> (http://bugs.winehq.org/attachment.cgi?id=2283&action=view)
This is the backtrace of the program running when we attempt to use it with the
alsa configuration turned on.
The program continues to run. It just says its unable to establish a
connection.
So there is no crash that happens.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5068
Summary: Secondlife will not log in with the Also driver turned
on and OSS driver turned off
Product: Wine
Version: 0.9.11.
Platform: Other
URL: http://www.secondlife.com
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: philip(a)digitalinfinity.biz
Second life the popular online 3D virtual world will not log in if we turn off
the OSS sound driver in winecfg and turn on Alsa driver. It gives an SSL error.
The error it gives when this happens is:
Unable to establish a secure connection to the login server. Often this means
that your computer's clock is set incorrectly . Please go to Control Panels and
make sure the time and date are set correctly.
This only happens when Alsa is turned on in winecfg and we run the program. We
end up having to use the OSS driver.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
------- Additional Comments From tony.lambregts(a)gmail.com 2006-13-04 19:28 -------
the established practice is to keep the the first report of the bug and mark
subsequent reports of the same bug duplicates. thats the way it is. There is
nothing wrong with your report except that it 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=4767
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-ole |wine-directx-dplay
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 19:12 -------
I sent an e-mail asking about the Comms system to the developer of the game
(Infinite Interactive), and they said it calls the following DPlay Comms
functions in initialization.
CoCreateInstance (for a Threadpool)
ThreadPool::Initialize
ThreadPool::SetThreadCount
CoCreateInstance (for a DPlay8Peer)
DPlay8Peer::Initialize
DPlay8Peer::EnumServiceProviders
CoCreateInstance (for a DPlay8LobbiedApplication)
DPlay8LobbiedApplication::Initialize
Seeing that this game starts in Cedega, and that Cedega has no functioning
DirectPlay support, a few stubs should be all that is needed to fix 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=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 18:54 -------
If your getting that picture your now allot further then I am with getting the
program to work. I'd be happy to get that so that I can find other bugs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 18:52 -------
Do you have double buffering on? That may be why they are being over drawn. It
could be that the program is double buffering also.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5067
Summary: Worms Armageddon Demo crashes on load
Product: Wine
Version: 0.9.12.
Platform: Other
URL: http://wa.team17.com/main.html?page=good&area=demo
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccpat(a)gmail.com
When I try to run the Worms: Armageddon demo, immediately upon load, after the
resolution changes, I get dumped back to X, and my screen is all screwed up. The
resolution is very small, and there appears to be some corruption to the screen,
and I can only see the mouse pointer at the very top of the screen.
Also, Worms: Armageddon (full) works (a little bit), but when you try to access
the weapons menu, it freezes.
See attachment for the crash data from winedbg.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5066
------- Additional Comments From mike(a)codeweavers.com 2006-13-04 18:33 -------
Did you get any warnings when configuring Wine? Which version of FontForge do
you have 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=2795
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-13-04 16:24 -------
Boky, could you attach some more info from the application (and i copy from
comment 9):
Can you try a WINEDEBUG=+tid,+relay trace, and wait until the msgbox appears,
then find the 'MessageBox' call in the trace, and submit the last eg. 10,000
lines (compressed) as an attachment?
Thanks. (BTW can this application be downloaded somewhere?)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 16:01 -------
Actually this bug is against install shield. I would have closed the other bug
instead of this one. This one is more accurate. It actually talks about two
different programs. Both use install shield both have the same problem.
Its a bug with code that is run by installshield NOT SlingPlayer.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4312
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 16:01 -------
Specifically, the function named is
d3d_shader:ValidateVertexShader
from the 0.9.7 log, while in Wine 0.9.12 it is
d3d8:ValidateVertexShader
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4847
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-13-04 15:59 -------
this is fixed again (works fine in current cvs), i guess by one of julliard patches.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 15:58 -------
Oh that was in the other bug that I had filed on this bug by mistake. The one
that I closed. But I'll post it again.
I'll post it again.
I have an Athelon 64 using the 32 bit version of Fedora. (I know I know. I
should really use the 64bit version. But the 64bit version didn't install for
some strange reason. I'll try it again later. sometime).
I've got an nVidia Geforce 6200 video card made by Asus. The EXTREME N6200TC
With TurboCache.
64MB on card. But can support up to 256MB of memory if you look at the system
memory it uses. Its a PCI EXPRESS card.
Version of the driver I'm currently using. I've just upgraded to Linux Driver
number x86-1.0-8756
A8N-E No SLI on the motherboard.
Hope this helps.
Previous drivers had a similar issue. But its only since I installed the new
driver that I got the HAL issue.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5066
Summary: Fonts do not display properly; appear cut off
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccpat(a)gmail.com
I just compiled Wine 0.9.12 (final), and tested out Notepad (the Wine version),
and a few other programs (FASMW editor, Fresh IDE, etc), and most of the fonts
are cut off.
If I type something into Notepad, I see no text;in other editors, I can see the
text. I believe the problem is with the default font for Wine, because in the
other editors the text isn't what Wine uses as "default".
See attachment for an image of 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=3773
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-13-04 15:43 -------
Could you tell what kind of videocard you have? And what driver? Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 15:11 -------
Created an attachment (id=2279)
--> (http://bugs.winehq.org/attachment.cgi?id=2279&action=view)
Back Trace from program when I try to open a DirectX project.
Oh I got a new error on this thing. It might help. Its saying unable to create
a DirectX Hal device. But this error doesn't come up in all the projects we
open. On some projects it just comes up with an out of memory error.
Surprisingly the directX apps don't crash. Unlike OpenGL apps which cause the
program to completely crash.
I believe the problems are probably two different problems. Let me know if you
want me to introduce a new bug report for for either directX support or OpenGL.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4871
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |philip(a)digitalinfinity.biz
------- Additional Comments From tony.lambregts(a)gmail.com 2006-13-04 15:10 -------
*** Bug 5064 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=5064
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
Status|UNCONFIRMED |RESOLVED
Priority|P1 |P3
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2006-13-04 15:10 -------
Well yes, Bug 4871 is against slingplayer but so is this one. I fail to see why
we would want to have two open bugs for the same bug.
Also this is not a blocker since it does not block development and/or testing work
(Wine still works)
*** This bug has been marked as a duplicate of 4871 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 15:01 -------
There is additional information in bug number 4702. But it is a duplicate.
Additional note. When I open a directX project in this program a window comes up
stating Unsupported Rendering device.
OpenGL projects crash the program.
Problems are still occuring in version 0.9.11.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 14:57 -------
*** Bug 4702 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=4702
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 14:57 -------
I'm marking this bug as a duplicate of bug 3773.
*** This bug has been marked as a duplicate of 3773 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4272
------- Additional Comments From rioki(a)web.de 2006-13-04 14:54 -------
Hello there,
I wannted to add that the bug came in around after 0.9.2. I have used wine with
Ubuntu Hoary (5.04) and it worked fine, now whith the new (0.9.11) versions it
crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5065
Summary: [tasklet] Create a sfd2ttf wine app to build fonts at
build time
Product: Wine
Version: unspecified
Platform: All
OS/Version: other
Status: NEW
Keywords: tasklet
Severity: normal
Priority: P3
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Speeddymon(a)gmail.com
Just what the summary says. This bug is a tasklet for anyone that wants to take
charge of building the required program. The author of FontForge (our current
dependency) is willing to let us use his code. See
http://www.winehq.org/pipermail/wine-devel/2006-April/046345.html for more info...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3311
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-13-04 14:29 -------
I tried it 2 weeks ago, and then it didn't work, and last week it worked again.
It seems that sometimes it works and sometimes it doesn't. very weird.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4702
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 14:08 -------
Sorry I updated bug 3773 instead of this bug. So my results are in there. Sorry.
Misread the request to close the bug report. I'll put any additional bug
information in this one if you wish. Problem is still occuring in 0.9.11. Fedora
packages. I'm just testing on fedora because its what I use.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 14:04 -------
Problems with render monkey are still happening in 0.9.11. Same errors. Same
problems.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3773
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.10. |0.9.11.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 13:30 -------
I just want to make an additional comment on the impact this bug has on the
usability of the system. Because we can't install quicktime. Programs like
Secondlife won't play video at all in the 3D environment. And any other
programs that depend on Quicktime will most likely not work. It prevents us
from testing programs like Quicktime to see if there are any other bugs with
those programs. Its also effecting a hole lot of other apps. So thats why I've
set the priority for this bug the way it is.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Priority|P2 |P1
Platform|Other |PC
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |blocker
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 12:41 -------
Yes this bug is indead a duplicate of 4871. However I don't believe its a bug
with Sling Player but a problem with InstallShield. That bug is miss filed as a
bug with Sling player. I think its better to say that its a bug affecting
Installshield itself as it affects multiple programs. Not the least of which is
Sling Player but also Quicktime as well. There are probably a few programs that
will be affected by this bug. It seem to be common to programs that use
InstallShield as an installer.
Its a show stopper. We can't fully test the programs until this bug is resolved
because we can't even install the program.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
------- Additional Comments From tony.lambregts(a)gmail.com 2006-13-04 12:24 -------
Looks to me that this is a duplicate of bug 4871
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|InstallShield fails to |InstallShield fails to
|Install application Error |Install application Error
|code |code 1628
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 12:12 -------
No files for the respective programs are installed when the crash happens. So
the program is not installed on the computer.
a directory in the windows directory is created called "Downloaded
Installations" containing installation files.
It contains two sub directories.
{59C4F14F-7590-45FC-BE9F-A67AB3590709}
{A4CF9831-FD5C-4A87-9FA0-7049F0D00128}
The first sub directory contains installation information for iTunes and
quicktime. The second for SlingPlayer. I believe this is some sort of temporary
directory for install shield. This information however is left behind after
install shield crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 12:05 -------
Created an attachment (id=2278)
--> (http://bugs.winehq.org/attachment.cgi?id=2278&action=view)
Same error when trying to install apple quicktime player.
The same error occurs when trying to install quicktime.
This problem seems to be a show stopper for many programs.
It will prevent us from even installing the software.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
philip(a)digitalinfinity.biz changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|InstallShield fails to |InstallShield fails to
|Install application Error |Install application Error
|code |code
------- Additional Comments From philip(a)digitalinfinity.biz 2006-13-04 11:55 -------
http://www.slingmedia.com/support/downloads.php
Here is the URL for the program I attempted installing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5064
Summary: InstallShield fails to Install application Error code
Product: Wine
Version: 0.9.11.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: philip(a)digitalinfinity.biz
Program crashes with an error:
1628 failed to complete installation.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3311
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 10:12 -------
Works in Wine 0.9.10, not in 0.9.11. If none of you are doing it, I can do a
regression analysis.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5063
Summary: Firefox 1.5 slow in Wine
Product: Wine
Version: CVS
Platform: Other
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
Firefox 1.5 in wine is about a third the speed of firefox 1.5 in linux.
For instance, http://bugs.winehq.org loads very slowly (five seconds) in
wine, but quickly (1.5 seconds) in Linux.
Another example: scrolling in http://www.heritageofscotland.com/ is
painful in wine, but reasonable in Linux.
Finally, the "Download Finished" animation that slides up from
the bottom of the screen is about fifty times slower in
wine that in Linux; it really gets in the way, and interferes with focus.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4248
------- Additional Comments From phil(a)mail.ru 2006-13-04 09:15 -------
This bug should be reassigned to wine-directx component.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3793
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Summary|Battlefield 2 attempt in |Battlefield 2 attempt
|Ubuntu |
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 09:13 -------
I don't think this has anything to do with NtSetSystemInformation. By the
way, I use the demo.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3793
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 09:11 -------
*** Bug 4745 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=4745
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 09:11 -------
Duplicate.
*** This bug has been marked as a duplicate of 3793 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3793
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 09:09 -------
I managed to get a game running. The spawn/team selectino screen looks almost
OK, but in gameplay almost everything except the player's hands are missing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2902
jens-wine(a)spamfreemail.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From jens-wine(a)spamfreemail.de 2006-13-04 08:48 -------
Hello,
with wine-0.9.11-0.1 (SuSE RPM) and scad3 from 10. April 2006 this bug still
occurs. I have an onboard ATI graphics card, maybe that is relevant to the
problem?
I would really appreciate if this could be fixed.
Thanks!
Jens
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4767
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 07:01 -------
The log from the game running in Windows XP is longer. The next message
should be "Comms system been successfully initialized". Does anyone know what
this comms system might be?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4946
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Fresh IDE crashes on '.' |Fresh IDE crashes on '.'
|character entry |character entry
------- Additional Comments From alex(a)thehandofagony.com 2006-13-04 06:04 -------
The characters are rectangles because you don't have FontForge installed, or
your FontForge version is too old.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5022
------- Additional Comments From infyquest(a)gmail.com 2006-13-04 05:18 -------
This is because we do not have DirectShow Editing Dll (qedit.dll)
Till we implement qedit.dll, we donot have NullRenderer
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5021
mikolaj.zalewski(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mikolaj.zalewski(a)gmail.com 2006-13-04 03:58 -------
The patch got accepted so I close the bug report.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5008
ykirill(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ykirill(a)yahoo.com
------- Additional Comments From ykirill(a)yahoo.com 2006-13-04 02:47 -------
*** Bug 5046 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=5046
ykirill(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From ykirill(a)yahoo.com 2006-13-04 02:47 -------
Yes, it's the same problem
*** This bug has been marked as a duplicate of 5008 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5062
Summary: Nero 7 installer bombs
Product: Wine
Version: 0.9.11.
Platform: PC
URL: http://www.nero.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)enzerink.net
DVD authoring on Linux sucks so I'd like to use Nero Vision which is clean and
easy to use, but I get this error when running the installer. Note that it
unpacks a bunch of files then runs a secondary installer (typical Windows app!):
fixme:msi:MsiInstallProductW L"C:\\windows\\temp\\NeroDemo9598\\setupx.exe" L"
FAMILYNAME=\"Nero 7\" TRANSFORMS=C:\\windows\\temp\\NeroDemo9598\\1033.mst
UILANGUAGEID=1033 STARTPARAM=CallFromExe DONOTRUNSETUPX=1
MSISOURCEFILE=C:\\windows\\temp\\NeroDemo9598\\Nero.msi"
fixme:msi:MSI_OpenDatabaseW open failed r = 80030050!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5061
Summary: Copying from Windows Firefox in Wine and pasting to
Linux OpenOffice pastes metadata as data
Product: Wine
Version: CVS
Platform: Other
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
Copy some HTML (say, from kegel.com) in Windows Firefox 1.5
Paste it into Linux OpenOffice 2.0
The following extra text is pasted first:
Version:0.9 StartHTML:00000126 EndHTML:00000222 StartFragment:00000160
EndFragment:00000186 SourceURL:http://kegel.com/
followed by the text you grabbed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5060
Summary: Firefox has one-pixel-wide rendering artifact on
Slashdot
Product: Wine
Version: CVS
Platform: Other
URL: http://slashdot.org
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I think this just popped up between 7 Apr 2006 and 12 Apr 2006:
there are one-pixel wide black lines to the left
of the "related links" beneath each article in the
main list on slashdot.
This with windows firefox 1.5.0.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=5059
Summary: Firefox displays banner ad in wrong location
Product: Wine
Version: CVS
Platform: Other
URL: http://lwn.net/Articles/179305/#Comments
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
To repeat: install Firefox (I'm using 1.5.0.1), then
visit http://lwn.net/Articles/179305/#Comments
You shouldn't see the banner ad at all, but
you kind of do -- you see the gray background
of a banner ad on the screen at the location
it would be if you were looking at
http://lwn.net/Articles/179305/
instead of the #Comments section of the page.
The problem rights itself if you wait a while and move
the mouse. The ad is displayed by a hunk of javascript, fwiw.
I think this has been happening for some time, but this
is the first time I've really seen it be repeatable.
This happened both with 20060407 and 20060412.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5056
------- Additional Comments From mike(a)codeweavers.com 2006-12-04 22:15 -------
Does the game show any problem, or is this just a message on the screen?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony.lambregts(a)gmail.com 2006-12-04 21:25 -------
Yes this is a 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=5055
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From Speeddymon(a)gmail.com 2006-12-04 21:13 -------
if we arent resolving then we should reopen, not mark it verified.. lol
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From jonathan(a)ernstfamily.ch 2006-12-04 21:11 -------
I don't think we should resolve this bug as invalid. Wine should use
freedesktop's trash spec and it'll work with most WM.
See also: "Take Out the Trash" in http://www.winehq.org/site/fun_projects
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)gmail.com 2006-12-04 21:04 -------
This is by design. Same thing happens when you hit delete key on the keyboard
while in a windows app. Due to the differences in the trash bins in each window
manager, wine would have to determine which window manager was in use, each time
it is run, and then adapt itself to use that bin each time. For the short term,
I don't see that happening. Depending on what filesystem you are using, they
can be recovered using the tools built for that fs. It can be tedious though
and might be better left to a linux guru, if you are not one..
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4767
------- Additional Comments From alex(a)thehandofagony.com 2006-12-04 19:26 -------
Created an attachment (id=2274)
--> (http://bugs.winehq.org/attachment.cgi?id=2274&action=view)
The game's startup log
Reading through the readme again, I found that the game writes a startup log,
which I have attached here. It doesn't mention any errors, the last entry is
'Initializing Comms System'. I have tried running it with native DCOM98.
One strange thing is that it identifies the Windows version as Windows ME,
while it is set to 2000.
By the way, the command-line option for no sound is NOSOUND. The game was nut
run with this option when the log was created.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4767
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From alex(a)thehandofagony.com 2006-12-04 19:19 -------
The game has a command-line switch for turning off all audio, but it crashes
in the exact same way when it is enabled. It is, however, possible that it
tries to initialize audio even with the switch 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=5058
Summary: No screen output under NX / FreeNX
Product: Wine
Version: 0.9.5.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eugen(a)drnet.at
- Platform is SuSE 10 x86_64
- Tested Wine versions 0.9.[5|11]
- Tested NX Versions 1.5.0 and 1.5.0-34
All other applications (apart from Wine) work perfect via NX.
When starting "notepad" from a VNC session, everything works as expected. When
doing the same thing from NX session, no screen output is produced.
I googled for a while - consensus seems to be "it just works or it doesn't -
nothing you can do".
Then checked with the NX support Database which said nothing usefull (only about
missing fonts or Media Player stuff).
I tried all variants of the x11driver settings available via winecfg plus some
others prompted by Google and NX support database (especially: No rendering)
Weird situation:
- NX works with everything but Wine
- Wine works with erverything but NX
I post a similar Bug to NX!
Thanks for a great product!
Regards, Eugen
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2795
------- Additional Comments From verynotbad(a)gmail.com 2006-12-04 16:40 -------
Hi.
I am faced with an exat sam problem "Cannot open AVI.". Patch did not do any good.
WINEDEBUG=+tid,+relay wine ./ePhotoLab.exe did not print out anything weird.
Patch was applied against wine-0.9.11.
Wine was compiled (Gentoo) with the following flags:
app-emulation/wine-0.9.11 USE="X alsa cups gif glut jack jpeg lcms ldap ncurses
opengl scanner truetype xml -arts -debug -esd -nas -oss"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5057
Summary: Core fonts don't install if they're found on the host
Product: Wine
Version: CVS
Platform: PC
URL: http://ovh.dl.sourceforge.net/sourceforge/abiword/abiwor
d-setup-2.0.8.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tkho(a)ucla.edu
If the MS core fonts exist on your host system (eg via the msttcorefonts deb),
the MS core fonts executables successfully run in Windows, but don't actually
place any fonts in the C:\Windows\Fonts directory.
This is a problem because less desirable fonts in that directory may take
precedence. Perhaps tt fonts on the host system should have the same precedence
as those in the windows font directory.
Background:
A fresh install of AbiWord 2.0.8 causes the menubar to be rendered in Dingbats
font, even though there is a full set of ms core fonts recognized by fontconfig.
Manually installing the core fonts (via the installer) claims to succeed, but
does not actually copy files into C:\Windows\Fonts, probably because they are
already on the host system.
The only way I could manage to successfully install the core fonts in Wine was
to remove them from the host first, after which the menus in AbiWord rendered 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=5056
------- Additional Comments From nospam(a)thenerdshow.com 2006-12-04 14:10 -------
When played under the wine desktop mode the errors are more intuitive. The
semi-stub in Main_DirectDraw_GetScanLine might be a clue.
Comments: (from MSDN)
"The returned scan line value in dwScanLine must be greater than or equal to 0
and less than N..."
Could it be trying to set LPRECT to the value returned by the getscanline
semi-stub? Anyway, more testing is needed. Will submit a trace on this when I
get time.
fixme:vxd:VXD_Open Unknown/unsupported VxD L"sysaudio.vxd". Try setting Windows
version to 'nt40' or 'win31'.
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x1006e608)->(0x20048,00000011)
fixme:ddraw:Main_DirectDraw_GetMonitorFrequency (0x1006e608)->(0x1025fc8c)
returns 60 Hz always
fixme:ddraw:Main_DirectDraw_GetScanLine (0x1006e608)->(0x1025fd50) semi-stub
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3762
tkho(a)ucla.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tkho(a)ucla.edu
------- Additional Comments From tkho(a)ucla.edu 2006-12-04 14:00 -------
The font behavior turns out to be a problem with Abiword 2.0.8 for Windows
(http://ovh.dl.sourceforge.net/sourceforge/abiword/abiword-setup-2.0.8.exe). The
installer places the Dingbats font in windows\fonts (making it the only ttf),
and Wine chooses Dingbats instead of the other fonts (X11 fonts and TrueType
fonts outside the ~/.wine directory) installed on the system.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5056
Summary: [ddraw/dsurface/main.c] LPRECT parameters for
Main_DirectDrawSurface_Lock
Product: Wine
Version: 0.9.11.
Platform: Other
URL: http://www.winehq.com/hypermail/wine-
devel/2005/02/0363.html
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nospam(a)thenerdshow.com
"the game tries to lock a surface with width and/or height
equal to zero.the game tries to lock a surface with width and/or height
equal to zero."
I've re-produced this bug by installing "Feeding Frenzy 2" from Pop Cap Games today.
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
err:ddraw:Main_DirectDrawSurface_Lock Invalid values in LPRECT !!!
The patch:
--- dlls/ddraw/dsurface/main.c 2005-01-09 18:35:44.000000000 +0100
+++ dlls/ddraw/dsurface/main.c 2005-02-14 21:03:36.511738080 +0100
@@ -1111,8 +1111,8 @@
(prect->left < 0) ||
(prect->bottom < 0) ||
(prect->right < 0) ||
- (prect->left >= prect->right) ||
- (prect->top >= prect->bottom) ||
+ (prect->left > prect->right) ||
+ (prect->top > prect->bottom) ||
(prect->left >= This->surface_desc.dwWidth) ||
(prect->right > This->surface_desc.dwWidth) ||
(prect->top >= This->surface_desc.dwHeight) ||
reportedly works around the problem, but is not a solution. Your mission,
should you choose to accept it, is to find an actual solution, instead of this
crude workaround.
This quote, from the mailing list url (above):
"This patch won't be applied.
The things to do is to write a test case and run it under Windows.
Once the exact behaviour is determined, a proper fix can be written.
Also note that the data in LPRECT may has been corrupted at some point.
The problem is thus elsewhere.
Bye,
Christian"
Any help with writing a test case would be appreciated. Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5046
------- Additional Comments From parsonsl(a)upstate.edu 2006-12-04 13:15 -------
We have been working on some bugs regarding running 16bit applications in wine
under FreeBSD.
Bug #4541 contains a patch that fixes problems with 16bit applications in wine
up to and including version 0.9.6.
Bug #5008 is related to the more recent problems, particularly for any version
of wine from 01-26-2006 or newer. It seems that some code related to "tape.c"
needs to be resolved in order to proceed with this bug shooting.
I suspect that this bug may be a duplicate of bug #5008
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4685
tkho(a)ucla.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2054 is|0 |1
obsolete| |
------- Additional Comments From tkho(a)ucla.edu 2006-12-04 11:00 -------
Created an attachment (id=2273)
--> (http://bugs.winehq.org/attachment.cgi?id=2273&action=view)
patch to properly handle
patch to properly handle VK_LMENU input (take 3)
rejected when I tried to post to wine-patches...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4948
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2260 is|0 |1
obsolete| |
------- Additional Comments From the3dfxdude(a)gmail.com 2006-12-04 10:00 -------
(From update of attachment 2260)
obsolete
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4897
pgr(a)arcelectronicsinc.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-12-04 09:34 -------
After the folloing commit my application works.
server: Don't attach thread input to the desktop.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5055
Summary: If you Right Click delete files then the are files lost
forever!!
Product: Wine
Version: 0.9.11.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)jnmedia.net
Hi when you are using a windows app in wine and you goto the open menu or save
menu etc, if you right click on a file to rename etc and accidently click delete
or even if you click delete on purpose but then regret it, the files you delete
just get deleted and not sent to the linux trash bin. and i can't find a windows
recycle bin they are going to either.
i lost some important files due to this in photoshop.
thanks,
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4900
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-12-04 08:42 -------
Resolving Fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5038
------- Additional Comments From parsonsl(a)upstate.edu 2006-12-04 07:43 -------
Some 16bit application errors were resolved by the patch posted in Bug #4541.
However, this patch does not resolve all the issue involved in newer versions
of wine. See most recent messages in Bug #5008 for details.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5008
------- Additional Comments From parsonsl(a)upstate.edu 2006-12-04 07:41 -------
My most recent regression work to isolate the bug seemed to indicate that the
patches relating to tape support for wine 0.9.7 may somehow be related.
Wine 0.9.6 from dates up to and including 01-26-06 will build and run 16bit
applications when patched with the patch from bug #4541.
Wine versions built from 01-27-06 or newer will generally fail to compile,
regardless of patch status. If we can resolve the tape.c issue (which
requires an issue in change.c to also be resolved) then we can work forward
and likely get a version of wine newer than 0.9.6 to work successfully with
16bit applications.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5008
------- Additional Comments From parsonsl(a)upstate.edu 2006-12-04 07:38 -------
Asgard-
I am not convinced that the error is entirely due to freebsd. For example, if
you look back to bug #4541, you will see that in earlier versions of wine, it
is possible to run 16bit applications on freebsd 6.0. In fact, at least one
16bit application I have successfully run with wine up to 0.9.6 does not run
on newer 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=5041
------- Additional Comments From marcus(a)jet.franken.de 2006-12-04 06:47 -------
its a bug in the SUSE RPMs :(
please wait for the 0.9.12 build (or I can send you a fixed RPM if you need
one).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5038
asgard(a)etersoft.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From asgard(a)etersoft.ru 2006-12-04 06:37 -------
With attached setup.exe we can reproduce the problem,
but this bug is duplicate of #5008
*** This bug has been marked as a duplicate of 5008 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5008
asgard(a)etersoft.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |asgard(a)etersoft.ru
------- Additional Comments From asgard(a)etersoft.ru 2006-12-04 06:37 -------
*** Bug 5038 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.