0.9.5b1 Win32 Minor fix

2000-02-25 Thread Andrew W. Gray
in ms\test.bat change line 5 PATH=..\ms;%PATH% to reflect output directory for w32 build: PATH=..\out32dll;%PATH% --- I see someone already got the signed/unsigned warning treated as error due to /WX in /ssl/s3_pkt.c line 849 --- Regards, Andrew _

Re: 0.9.5b1 Win32 Minor fix

2000-02-25 Thread Ulf Moeller
On Fri, Feb 25, 2000, Andrew W. Gray wrote: > change line 5 > > PATH=..\ms;%PATH% > > to reflect output directory for w32 build: > > PATH=..\out32dll;%PATH% That won't work. You should run test.bat in the output directory. (It would make sense to have test.bat change to that directory automa

Re: 0.9.5b1 Win32 Minor fix

2000-02-25 Thread Geoff Thorpe
On Fri, 25 Feb 2000, Andrew W. Gray wrote: > --- > I see someone already got the signed/unsigned warning treated as error > due to /WX in /ssl/s3_pkt.c line 849 > > --- if you mean line 749: yeah, that was me - for some reason the couple of minor commits I made (based on VC++ testing) d

RE: 0.9.5b1 Win32 Minor fix

2000-02-26 Thread Daniel S. Reichenbach
> I see someone already got the signed/unsigned warning treated as error > due to /WX in /ssl/s3_pkt.c line 849 Did a quick compile on both NT4 and Win98. Got the same warning with /WX. Daniel __ The OpenSA Project

Re: 0.9.5b1 Win32 Minor fix

2000-02-26 Thread Andrew W. Gray
>> I see someone already got the signed/unsigned warning treated as error >> due to /WX in /ssl/s3_pkt.c line 849 >Did a quick compile on both NT4 and Win98. Got the same warning with /WX. >Daniel declare n as unsigned around line 709/710 in s3_pkt.c if memory serves me correctly. That'll fix

Re: 0.9.5b1 Win32 Minor fix / _and_ Win32 build test details

2000-02-25 Thread Andrew Gray
inal Message- From: Ulf Moeller <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Friday, February 25, 2000 11:51 AM Subject: Re: 0.9.5b1 Win32 Minor fix >On Fri, Feb 25, 2000, Andrew W. Gray wrote: >> change line 5 >> >> PATH=..\ms;%PATH% &

Re: 0.9.5b1 Win32 Minor fix / _and_ Win32 build test details

2000-02-26 Thread Ulf Möller
On Fri, Feb 25, 2000 at 08:36:38PM -0500, Andrew Gray wrote: >> cd out32dll /*or whatever your output directory may be*/ >> ..\ms\test In the VC++ section, it says > cd out32dll > ..\ms\test The > cd out > ..\ms\test is for Mingw32. __