http://bugs.winehq.org/show_bug.cgi?id=9157
------- Additional Comments From dank(a)kegel.com 2007-03-08 10:35 -------
Hey, I take it back. Wine already has the needed
annotations in dlls/ntdll/heap.c. So Wine already
knows about Valgrind, and vice versa!
Perhaps the copy of Wine you used was compiled
on a system that was missing /usr/include/valgrind/valgrind.h.
So, Littlestar, if you install valgrind before building wine,
does that solve your 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=3703
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2007-03-08 10:28 -------
| The problem is that your Freetype version is too old (2.1.4) and it doesn't
| support Wine bitmap fonts. Therefore Wine replaces its builtin bitmap font
| "System" by an one provided by your system "Adventure" (/usr/share/fonts/ttf/
| western/Adventure.ttf) and that one doesn't have characters you need.
|
| You can install microsoft core fonts package to workaround this problem, or
| upgrade Freetype to at least version 2.1.9.
OK. There is still "CCNI" in place of "ÄÄNI".
WINEDEBUG="+font,+xrender" says:
trace:font:WineEngInit
trace:font:WineEngInit FreeType version is 2.3.5
trace:font:AddFontFileToList Loading font file
"/home/hurtta/.wine/dosdevices/c:/windows/fonts/vgasys.fon"
index 0
warn:font:AddFontFileToList Unable to load font file
"/home/hurtta/.wine/dosdevices/c:/windows/fonts/vgasy
s.fon" err = 1
trace:font:AddFontFileToList Loading font file
"/usr/local/wine/bin/../lib/../share/wine/fonts/vgasys.fon"
index 0
trace:font:AddFontFileToList pix_h 16 charset 0 dpi 96x96 pt 10
trace:font:AddFontFileToList Adding bitmap size h 16 w 7 size 10 x_ppem 13 y_ppem 13
trace:font:AddFontFileToList fsCsb = 00000001 00000000/00000000 00000000
00000000 00000000
trace:font:AddFontFileToList Added font L"System" L"Regular"
trace:font:AddFontFileToList Loading font file
"/home/hurtta/.wine/dosdevices/c:/windows/fonts/vga850.fon"
index 0
So at least Wine thinks that FreeType 2.3.5 is used ...
So it probably also some other library ....
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=9140
------- Additional Comments From dank(a)kegel.com 2007-03-08 10:14 -------
Never say never :-)
Also, it's not clear mono supports this yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=9169
------- Additional Comments From spencercw(a)googlemail.com 2007-03-08 10:07 -------
Well I'm stumped, I can't get anything to work. I even tried sticking the
original and the new version together with in an || operator, but that didn't
work. This leads be to believe it's supposed to return false somewhere, and it
does with the original, but not with the new one.
Do you think it could be something to do with the is_desktop_window() function,
which returns !win->parent. Maybe something is screwed up so the spawn screen
and other overlay stuff have no parent, so it thinks it's the desktop when it's
not? I'm just throwing it out there, I don't know if that's possible or not.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=9167
------- Additional Comments From Gordaz(a)hotmail.com 2007-03-08 09:43 -------
Uninstalled and deleted .wine directory, reinstalled wine from adept with
wine_gecko. Still 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=9169
------- Additional Comments From vitaliy(a)kievinfo.com 2007-03-08 09:11 -------
No it doesn't look ok. The whole propose of the patch was to allow Desktop to
receive focus.
That function is used in only one place. That place is responsible for letting
user space know to send activate/deactivate messages to windows when foreground
window changes (see set_foreground_window in dlls/user32/focus.c).
All that simply means that any app that calls SetForegroundWindow
(GetDesktopWindow()) will work properly while it didn't work before at all in Wine.
On the side note, virtual desktop does not guarantee proper focus handling. If
you have such problems you should not use virtual-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=9167
------- Additional Comments From Gordaz(a)hotmail.com 2007-03-08 08:54 -------
Similar to bug 6120 for the unexpected crash, but they may or may not be
linked within the code: The metascore@ thingy from bug 6120 seems like steam
is trying to update the order of a list, and this bug, I don't think there is
any changes in the steam interface.
---
I was trying to install counter strike : source from steam. Also, it was a
fresh wine install; during the steam installation, wine asked to install gecko
to render page within wine, so I assume it was wine_gecko. I'll remove it
and reinstall everything just to make sure and post the results again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=9169
------- Additional Comments From spencercw(a)googlemail.com 2007-03-08 08:45 -------
Ok this is easily fixed by adding win->parent to the && list which was removed
in the patch:
- return (win && (is_desktop_window(win) || is_desktop_window(win->parent)));
+ return (win && win->parent && (is_desktop_window(win) ||
is_desktop_window(win->parent)));
Does this look ok?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.