Deficient implementation of SetFileTime or with stub GetSetFileTimestamp

2003-07-01 Thread Marcelo Duarte
Hi, Installing a system of the company in the Wine, I found a probable error, that is the following one: when the archives go being unpacked, them they are created in the directory with the current date and would have to be created with the same date of the compact file (as it is made

Re: wine/dlls/quartz quartz_private.h main.c filte ...

2003-07-01 Thread Marcelo Duarte
I updated from cvs an get an error: gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -D__WINESRC__ -Wall -mpreferred-stack-boundary=2 -gstabs+ -Wpointer-arith -g -O2 -o filtermapper.o filtermapper.c filtermapper.c: In function `FM2_WriteFilterData': filtermapper.c:365:

Re: wine/dlls/quartz quartz_private.h main.c filte ...

2003-07-01 Thread Robert Shearman
I updated from cvs an get an error I apologise for this. I will fix this when I next get access to my computer (it will be a fair few hours), unless someone beats me to it. It is a case of putting the following defines before strmif.h is included: #define NONAMELESSUNION #define

Re: Don't set stacking order against unvisible windows

2003-07-01 Thread Mike Hearn
However, I think it unbreaks InstallShield, which is a fantastically common application. It might be a case of a lesser of two evils decision. On Tue, 2003-07-01 at 00:01, Alexandre Julliard wrote: Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: dlls/x11drv/window.c:

Nameless struct in dlls/quartz/filtermapper.c

2003-07-01 Thread Uwe Bonnes
Hallo, with an CVS update this morning, compiling in dlls/quartz/ gives: gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -D__WINESRC__ -Wall -mpre ferred-stack-boundary=2 -gstabs+ -Wpointer-arith -g -O2 -o filtermapper.o filtermapper.c filtermapper.c: In function

Re: Don't set stacking order against unvisible windows

2003-07-01 Thread Dmitry Timoshkov
Mike Hearn [EMAIL PROTECTED] wrote: However, I think it unbreaks InstallShield, which is a fantastically common application. It might be a case of a lesser of two evils decision. Since you don't know what Alexandre means by other things, you certainly can't compare what evil is lesser :-)

Re: Don't set stacking order against unvisible windows

2003-07-01 Thread Mike Hearn
Since you don't know what Alexandre means by other things, you certainly can't compare what evil is lesser :-) Surely it couldn't break . notepad!?! That would be awful! :) Anyway, I believe that Alexandre already mentioned that making desktop mode work is a part of the planned window

Compile Error in CVS as of 7/1/03 at 7:14am MST

2003-07-01 Thread Kevin DeKorte
gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -D__WINESRC__ -Wall -mpreferred-stack-boundary=2 -gstabs+ -Wpointer-arith -g -O2 -o filtermapper.o filtermapper.c filtermapper.c: In function `FM2_WriteFilterData': filtermapper.c:365: structure has no member named `u'

can't compile current cvs - filtermapper

2003-07-01 Thread hatky
current cvs, completly clean: make[2]: Entering directory `/home/hatky/wine-source/wine/dlls/quartz' gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -D__WINESRC__ -Wall -mpreferred-stack-boundary=2 -gstabs+ -Wpointer-arith -g -O2 -o filterm apper.o filtermapper.c

Re: [DSHOW-03a] Fix Compile Problems On Newer Compilers

2003-07-01 Thread Maxime Bellengé
On my redhat 9, this patch doesn't work, I have to move the two defines at the very begining of the filtermapper.c file to make it work. Max On Tue, 2003-07-01 at 19:23, Robert Shearman wrote: Hi, This should fix the problems a number of people were having when compiling after the

Re: [RESENT] Always print version on startup

2003-07-01 Thread Francois Gouget
On Tue, 1 Jul 2003, Uwe Bonnes wrote: Changelog: misc/options.c: OPTIONS_ParseOptions Always print out version The recent posting about the Altere quartus installer not working seems to ^^ Altera be caused by

Re: [dx63] Warcraft ugly fonts

2003-07-01 Thread Raphaël Junqueira
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le Mardi 01 Juillet 2003 21:42, Ann and Jason Edmeades a écrit : This solves the problem of very ugly fonts in Warcraft3. I'd like to take credit but I am just tidying up and commenting a fix which was worked on by Lucho. Changelog: Ensure

RE: [RESENT] Always print version on startup

2003-07-01 Thread PETREOLLE Sylvain
I think this can be avoided. Let use stderr to print this, this way you can use redirections with every program you want. I will add one more remark (!) : I dont know many programs that expect Wine version in their output. If they are disturbed by this, this is a huge design problem.

RE: [RESENT] Always print version on startup

2003-07-01 Thread Francois Gouget
On Wed, 2 Jul 2003, PETREOLLE Sylvain wrote: I think this can be avoided. Let use stderr to print this, this way you can use redirections with every program you want. Actually, MESSAGE probably prints to stderr already. But still, some programs will assume that an error occurred if something

Re: Don't set stacking order against unvisible windows

2003-07-01 Thread Alexandre Julliard
Mike Hearn [EMAIL PROTECTED] writes: However, I think it unbreaks InstallShield, which is a fantastically common application. It might be a case of a lesser of two evils decision. No it's a correct vs. wrong decision. The existing code is correct and there's no reason to break it, even if

Re: [RESENT]Don't add empty lines when writing out profile files

2003-07-01 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: wine/files/profile.c: PROFILE_Save Don't add lines for empty sections This will cause us to delete keys that are before the first section header, I don't think that's correct. Why do you need that? -- Alexandre Julliard [EMAIL

Re: iphlpapi Solaris fixes

2003-07-01 Thread Alexandre Julliard
Robert Lunnon [EMAIL PROTECTED] writes: @@ -787,7 +789,11 @@ DWORD getInterfaceMtuByName(const char * if ((ioctl(fd, SIOCGIFMTU, ifr))) ret = ERROR_INVALID_DATA; else { +#if !defined sun *mtu = ifr.ifr_mtu; +#else + *mtu=ifr.ifr_metric; + #endif You should