Re: Can you provide me a help.

2006-08-30 Thread Stefan Dösinger
> wrc: error while loading shared libraries: libwine.so.1: cannot open
> shared object file: No such file or directory
Did you install wine with "make install"? Is the installation 
path(usually /usr/local/lib in your ldconfig search path?



pgpzqybHYOl2h.pgp
Description: PGP signature



Re: ddraw depthfill

2006-08-30 Thread Stefan Dösinger
Am Donnerstag 31 August 2006 06:22 schrieb EA Durbin:
> What's the status of re-implementing depthfill per bug 4306?
>
> http://bugs.winehq.org/show_bug.cgi?id=4306
I sent a patch to tell wined3d about the ddraw depth stencil buffer and 
thought it was committed, but apparently it wasn't :-/ With that implementing 
depthfill is easy as we can find out when the blt is called for the real 
depth stencil buffer.

When AJ is back I'll check why the patch wasn't committed


pgpBsZNUlJpH8.pgp
Description: PGP signature



ddraw depthfill

2006-08-30 Thread EA Durbin

What's the status of re-implementing depthfill per bug 4306?

http://bugs.winehq.org/show_bug.cgi?id=4306






Re: winehq.org Announcements

2006-08-30 Thread Dan Kegel

On 8/30/06, EA Durbin <[EMAIL PROTECTED]> wrote:

Why is there no release announcement for the 0.9.20 release of wine on the
homepage?


Fatigue, I suppose.  Feel free to submit the neccessary patch.
- Dan




winehq.org Announcements

2006-08-30 Thread EA Durbin
Why is there no release announcement for the 0.9.20 release of wine on the 
homepage?







Can you provide me a help.

2006-08-30 Thread karthikeyan Sivasubramanian








Hi,

    Please
help me while I compiling the sample notepad sources through WINE. Here I send
the following error lines shows by the Linux machine. 

 

[EMAIL PROTECTED] notepad]# winemaker --lower-uppercase .

Winemaker 0.6.0

Copyright 2000 Francois Gouget
<[EMAIL PROTECTED]> for CodeWeavers

warning: in ".", renaming "makefile" to
"makefile.win"

Scanning the source directories...

Fixing the source files...

  dialog.c

  main.c

  Bg.rc

  Cs.rc

  Da.rc

  De.rc

  En.rc

  Eo.rc

  Es.rc

  Fi.rc

  Fr.rc

  Hu.rc

  It.rc

  Ja.rc

  Ko.rc

  Nl.rc

  No.rc

  Pl.rc

  Pt.rc

  Ru.rc

  Si.rc

  Sk.rc

  Sw.rc

  Th.rc

  Tr.rc

  Wa.rc

  Zh.rc

  rsrc.rc

  dialog.h

  main.h

  notepad_res.h

Generating project files...

  .

 

 

[EMAIL PROTECTED] notepad]# make

winegcc -c  -mno-cygwin -I.   -o dialog.o
dialog.c

winegcc -c  -mno-cygwin -I.   -o main.o
main.c

wrc   -I.   -foBg.res Bg.rc

wrc: error while
loading shared libraries: libwine.so.1: cannot open shared object file: No such
file or directory

make: *** [Bg.res] Error 127

 

 

Regards,

S.Karthikeyan

 

 

 

 

 







__
DISCLAIMER:
This electronic message, and any attachments to this electronic message are
intended for the exclusive use of the addressee(s)named herein and may contain
legally privileged and confidential information. It is the property of Celstream
Technologies Pvt. Ltd. If you are not the intended recipient, you are hereby 
strictly notified not to copy, forward, distribute or use this message or any
attachments thereto. If you have received this message in error, please delete
it and all copies thereof from your system and notify the sender at Celstream 
Technologies or [EMAIL PROTECTED] immediately 
___



question about selecting of locale and font

2006-08-30 Thread Sergei Butakov
Hi

My native language is Russian but I prefer English for menu, messages, 
date ... So my locale defined as 
 # export LANG="POSIX", LC_CTYPE="ru_RU.CP1251", LC_COLLATE="ru_RU.CP1251"
(LC_ALL is not setted).

With wine-0.9.8 and before this works OK.

With wine-0.9.9 appear disadvantages: built-in font become serif (before was 
sans), smaller in height and ugly (it's look like hinting is bad); widgets  
(windows, buttons, ...) also become smaller in height about 20%.

With wine-0.9.10 (and till now - 0.9.20) appear one more disadvantage: when 
application use System (built-in) font, then wine select Western type (not 
Cyrillic). So Russian output is corrupted. All became correct if I run as
$ LC_ALL=ru_RU.CP1251 wine some_program
but I want menu on English.

In that time input work correctly - which Russian key is pressed that  
corresponding code is getted by Wine.
--
So, is it ability of using for menu (, pop-up windows, ...) not native 
language is removed by developers specially and now the only right way to run 
Wine is "LC_ALL=my_locale wine some_program"? Or there are bugs in Wine?

If the first answer is "yes" then it's very regrettably.
(BTW if I run 
$ LC_ALL=ru_RU.CP1251 wine wordpad
then in editor place all output is corrupted - no Russian,no English, no 
numerals, rightly work only "Enter". Is it trouble with richedit?
If I run
$ wine wordpad
then don't work output for Russian letters only.)

If the second  is "yes" then I can write more detailed.

--
Sergei Butakov




Re: [TRY 3] Add support for tooltips for system tray icons

2006-08-30 Thread James Liggett
On Wed, 2006-08-30 at 15:37 +0900, Mike McCormack wrote:
> Shouldn't you only initialize comctl32 once, rather than every time 
> there's no icons and we add one?
Sure. I did it like this because Alexandre only wanted to have common
controls initialized when we added an icon so we didn't have to do so
much work at explorer startup. Taking a second look I see how we could
end up initializing common controls more than once. My first thought on
this is to add a boolean variable somewhere that would tell us if we've
already initialized comctl32 so we don't do it more than once. 

James





Re: WineD3D: Avoid wasting a shader constant

2006-08-30 Thread Stefan Dösinger
Am Dienstag 29 August 2006 22:16 schrieb Stefan Dösinger:
> My previous half pixel correction patch loaded an extra row from the
> transform matrix into a new constant to access one float value, altough the
> already loaded 2nd row had 2 unused floats. This patch puts the x offset
> into the z value of the 2nd row and loads only that row. This doesn't look
> nice, but it doesn't require an additional shader parameter, so the
> constant is available for use by the game. Of course comments are added to
> document this :-)
Please do not apply this patch, I will send another patch which uses a real 
uniform instead of abusing the projection matrix




Re: wine's fullscreen code has no effect on metacity

2006-08-30 Thread Roderick Colenbrander
> "Elijah Newren" <[EMAIL PROTECTED]> wrote:
> 
> > Ugh.  Apparently, I busted our fullscreen handling in metacity>=2.14.x
> > in lots of cases in addition to problems we've being talking about in
> > this thread.  See http://bugzilla.gnome.org/show_bug.cgi?id=343115#c6
> > if you're curious.  Anyway, I think I've fixed all those issues, and I
> > believe my fixes should cover this last issue of yours (making windows
> > return to the original size correctly).  Is there any chance I could
> > get you test (with metacity 2.15.34) and verify?  (You could also
> > backport the patch from bug 343115...)
> 
> Since I'm on FC4 I can't test latest Metacity releases because it
> requires newer GTK, and backporting is not really possible since
> version 2.10 provided with FC4 is too different from 2.15.x series.
> 
> -- 
> Dmitry.
> 
You could for instance install Gargnome. It allows you to install a new gnome 
version without messing up your system. By default this new gnome is installed 
in your home directory.

Roderick

-- 


"Feel free" – 10 GB Mailbox, 100 FreeSMS/Monat ...
Jetzt GMX TopMail testen: http://www.gmx.net/de/go/topmail




Temporary Git tree available

2006-08-30 Thread Mike McCormack

Hi All,

As Alexandre has gone on holidays for a week, I've made available a 
temporary Git tree containing most patches sent to wine-patches.


You can pull my branch into your existing Git checkout as follows:

git fetch http://mandoo.dyndns.org/wine.git master:mmbranch
git rebase mmbranch

If you have an existing mmbranch, you probably want to delete it using:

git branch -d mmbranch

Mike


$ git log origin..
commit 5d6e51717f24a594d793e8fde930a4a28df37ef0
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 17:19:21 2006 -0700

widl: Remove obsolete handling of typedefs

commit f5fc2d59c121d13fe86d13d21c02ec6c6ba29eef
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 14:29:06 2006 -0700

widl: Generate an error for "int f(void a)"

commit c0299c2b3e6c1fa4e14feeab1723ca7c545e9699
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 14:28:05 2006 -0700

widl: Print pointers using better style

commit 41f540217f9bd03819be3f6154c03c06d98ec031
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 14:27:27 2006 -0700

widl: Add an is_ptr function

commit e20f80716e8b352d72a1d86381d1f405e58ee19e
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 14:26:43 2006 -0700

widl: Factor the entry_t structure

commit cd0ee17b195070962f97c5ac16b73dfd37e63620
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 14:26:03 2006 -0700

widl: Represent typedefs with easier to use structures

commit 52ad5914edf8169610cb20ed20de6c2ec21869b4
Author: Dan Hipschman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 14:25:19 2006 -0700

widl: Generate names for tagless structs, unions and enums

commit e6bde7d70b930e37079faa46a340b206e1276933
Author: Paul Vriens <[EMAIL PROTECTED]>
Date:   Tue Aug 29 17:57:35 2006 +0200

wintrust: Add some extra tests for WintrustRemoveActionID

commit 13651132d7337f90d6d0b403261e5e30bc35a04d
Author: James Hawkins <[EMAIL PROTECTED]>
Date:   Tue Aug 29 15:12:39 2006 -0700

advpack: Add the regsvr action to the SetupInstallFromInfSection call

commit 6d26805474edc8bbdd201fdeb070e766e3102485
Author: James Hawkins <[EMAIL PROTECTED]>
Date:   Tue Aug 29 15:12:22 2006 -0700

advpack: Get the proper working directory in install_init

commit e090dee9838d5dcfcc73464e7427f075e7d19bdc
Author: Roderick Colenbrander <[EMAIL PROTECTED]>
Date:   Tue Aug 29 16:58:49 2006 +0200

opengl32: import glx makecurrent/wglsharelists

commit 8d410088146faa56701c440daa4ae350985feff9
Author: Roderick Colenbrander <[EMAIL PROTECTED]>
Date:   Tue Aug 29 16:56:57 2006 +0200

opengl32: import glx context code

commit e012ffe349a279b939a7b49f7439dd1cd1cd901e
Author: Benjamin Arai <[EMAIL PROTECTED]>
Date:   Tue Aug 29 17:51:27 2006 -0700

oleaut32: Test for correct error codes and return type for VarAnd

commit 4dec3ee04b237a615bf0eb228c3b343ea537a6ca
Author: Benjamin Arai <[EMAIL PROTECTED]>
Date:   Tue Aug 29 17:50:05 2006 -0700

oleaut32: Updates variant:VarAnd to pass all failures exposed from 
conformance test


commit 9e1fa3f6afb808eb0750404180ec7ff30c0a4db0
Author: Benjamin Arai <[EMAIL PROTECTED]>
Date:   Tue Aug 29 17:49:29 2006 -0700

oleaut32: Conformance test for vartest:VarAnd checks for correct 
result values


commit 75d7a735bc4447d099968b78b08de8cc7db8ebe2
Author: Stefan Dösinger <[EMAIL PROTECTED]>
Date:   Tue Aug 29 21:46:49 2006 +0200

wined3d: Avoid wasting a uniform

commit 4056ee5dae9ce52b94f518a850c13dfee478e56d
Author: Robert Reif <[EMAIL PROTECTED]>
Date:   Tue Aug 29 19:34:31 2006 -0400

advapi32: fix lsa tests on windows98

commit b09802de14406bf2a358c256f2b186e15efde08d
Author: mike <[EMAIL PROTECTED]>
Date:   Wed Aug 30 12:55:27 2006 +0900

ddraw: Make tests pass when OpenGL libraries aren't present.

commit 835596de7066b84a88f6182d4fab4dda1832456a
Author: Andrew Talbot <[EMAIL PROTECTED]>
Date:   Tue Aug 29 23:12:16 2006 +0100

comctl32: Cast-qual warnings fix

commit b40c568d9215e906ca1521197fd3060c75fb6e5a
Author: Robert Shearman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 21:16:44 2006 +0100

rpcrt4: Make the reference counting in the standard proxy thread-safe.

commit 5bf357288caf3b5eb5766d6bcade4f49fbd80084
Author: Robert Shearman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 21:14:42 2006 +0100

rpcrt4: Fix NdrStubGetBuffer to use the IRpcChannelBuffer object 
since IRpcChannelBuffer_GetBuffer may put extra data onto the wire for 
ORPC calls.


commit d63bda52650573e7ec62ca3fae707a231cfbbc6c
Author: Robert Shearman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 21:14:05 2006 +0100

rpcrt4: Remove some unused code.

commit e888c667006107145f719537f3a169b797720cfd
Author: Robert Shearman <[EMAIL PROTECTED]>
Date:   Tue Aug 29 21:12:42 2006 +0100

rpcrt4: Move NdrStub* functions to cstub.c and move NdrProxy* 
functions to cproxy.c since both sets of functions depend on the 
implementations of the standard stubs and proxies.


commit 0879b1e305e4ad329f35c22d97a4765ea54be3c9
Author: Ro

Re: wine's fullscreen code has no effect on metacity

2006-08-30 Thread Dmitry Timoshkov

"Elijah Newren" <[EMAIL PROTECTED]> wrote:


Ugh.  Apparently, I busted our fullscreen handling in metacity>=2.14.x
in lots of cases in addition to problems we've being talking about in
this thread.  See http://bugzilla.gnome.org/show_bug.cgi?id=343115#c6
if you're curious.  Anyway, I think I've fixed all those issues, and I
believe my fixes should cover this last issue of yours (making windows
return to the original size correctly).  Is there any chance I could
get you test (with metacity 2.15.34) and verify?  (You could also
backport the patch from bug 343115...)


Since I'm on FC4 I can't test latest Metacity releases because it
requires newer GTK, and backporting is not really possible since
version 2.10 provided with FC4 is too different from 2.15.x series.

--
Dmitry.