Re: wine/msdos dpmi.c

2000-07-26 Thread David Elliott
Gerald Pfeifer wrote: > On Wed, 26 Jul 2000, James Juran wrote: > > I'm still getting a compile error with the egcs included in Red Hat 6.1 > > (egcs-2.91.66): > > It does not occur with GCC 2.95, so I suggest to update. (It may well be > a bug in egcs 1.1 you are experiencing.) > Unfortunately,

Re: InternetCheckConnection

2000-07-26 Thread David Elliott
Alexandre Julliard wrote: > Aric Stewart <[EMAIL PROTECTED]> writes: > > > However the API seems to lend itself to not only checking a generic > > internet connection but also checking conductivity to a specific host. > > For this a ping sort of approach seems appropriate. I will work at > > taki

Re: wine/msdos dpmi.c

2000-07-26 Thread Gerald Pfeifer
On Wed, 26 Jul 2000, James Juran wrote: > I'm still getting a compile error with the egcs included in Red Hat 6.1 > (egcs-2.91.66): It does not occur with GCC 2.95, so I suggest to update. (It may well be a bug in egcs 1.1 you are experiencing.) Gerald -- Gerald "Jerry" [EMAIL PROTECTED] http:/

Re: wine/msdos dpmi.c

2000-07-26 Thread James Juran
Alexandre Julliard wrote: > > CVSROOT:/home/wine > Module name:wine > Changes by: [EMAIL PROTECTED]00/07/26 12:04:54 > > Modified files: > msdos : dpmi.c > > Log message: > Avoid clobbering %ebx. I'm still getting a compile error with the egcs i

dpmi.c:255: fixed or forbidden register was spilled

2000-07-26 Thread Uwe Bonnes
Hallo, compiling todays CVS, I ran into this problem: gauss:~/tmp/wine/compile/wine/msdos> gcc -V 2.7.2.3 -c -I. -I. -I../include -I../include -g -O2 -Wall -fPIC -D__WINE__ -D_REENTRANT -I/usr/X11R6/include -o dpmi.o dpmi.c dpmi.c: In function `DPMI_CallRMCBProc': dpmi.c:255: fixed or forbidden

Re: InternetCheckConnection

2000-07-26 Thread Alexandre Julliard
Aric Stewart <[EMAIL PROTECTED]> writes: > However the API seems to lend itself to not only checking a generic > internet connection but also checking conductivity to a specific host. > For this a ping sort of approach seems appropriate. I will work at > taking out the www.ibm.net for a null para

Re: Listbox: Infinite loop

2000-07-26 Thread gerard patel
At 03:05 PM 7/26/00 +0200, you wrote: >The change by Stephane Lussier on 2000-06-07 broke my favorite 16bit >application, Stars!. The problem is that after the change that > > Height of the listbox should be adjust when LBS_OWNERDRAWFIXED is set > and not if LBS_OWNERDRAWVARIABLE is set, previou

Re: InternetCheckConnection

2000-07-26 Thread Aric Stewart
This sounds like a great idea for generic checking for a network connection. However the API seems to lend itself to not only checking a generic internet connection but also checking conductivity to a specific host. For this a ping sort of approach seems appropriate. I will work at taking out the

Re: InternetCheckConnection

2000-07-26 Thread Andreas Mohr
On Wed, Jul 26, 2000 at 04:31:38PM +0200, Bertho Stultiens wrote: > Try: > $ netstat -r -n > > This should give the routing tables as well. Netstat can be used on > solaris too afaik. Only to complete the picture: rshx11:~> uname -a HP-UX rshx11 B.10.20 A 9000/715 2013100679 two-user license rsh

Re: InternetCheckConnection

2000-07-26 Thread Marcus Meissner
On Wed, Jul 26, 2000 at 04:16:32PM +0200, Gerald Pfeifer wrote: > On Wed, 26 Jul 2000, David Elliott wrote: > >> gomeisa[53]:~% /sbin/route -n ; uname -rs > >> /sbin/route: Command not found. > >> SunOS 5.6 > > Okay, that's odd. Where do they hide the route command > > In /usr/sbin. However

Re: InternetCheckConnection

2000-07-26 Thread Gerald Pfeifer
On Wed, 26 Jul 2000, Bertho Stultiens wrote: > Try: > $ netstat -r -n > > This should give the routing tables as well. Netstat can be used on > solaris too afaik. Looks good! Solaris: Routing Table: Destination Gateway Flags Ref Use Interface --

RE: InternetCheckConnection

2000-07-26 Thread Patrik Stridvall
> Try: > $ netstat -r -n > > This should give the routing tables as well. Netstat can be used on > solaris too afaik. Yes, works for me (even as normal user).

RE: InternetCheckConnection

2000-07-26 Thread Patrik Stridvall
> > > Can I assume that the grep part should work on any self > > > respecting UNIX ? > > > > Only if the user have sufficent permissions which, > > as I said, is not the case on Solaris. > > Well, there is an easy solution to that problem. > > First, try to use route because it will tell you if

Re: InternetCheckConnection

2000-07-26 Thread Bertho Stultiens
Gerald Pfeifer wrote: [snip] > Sorry, not all the world is Linux: > > gomeisa[53]:~% /sbin/route -n ; uname -rs > /sbin/route: Command not found. > SunOS 5.6 > > taygeta[44]:~% /sbin/route -n ; uname -rs > usage: route [-dnqtv] command [[modifiers] args] > FreeBSD 4.0-RELEASE Try: $

Re: InternetCheckConnection

2000-07-26 Thread David Elliott
Patrik Stridvall wrote: > > > gomeisa[53]:~% /sbin/route -n ; uname -rs > > > /sbin/route: Command not found. > > > SunOS 5.6 > > > > > > > Okay, that's odd. Where do they hide the route command > > In /usr/sbin/route. However route fails, since only root > the sufficent permission to do th

Re: InternetCheckConnection

2000-07-26 Thread Gerald Pfeifer
On Wed, 26 Jul 2000, David Elliott wrote: >> gomeisa[53]:~% /sbin/route -n ; uname -rs >> /sbin/route: Command not found. >> SunOS 5.6 > Okay, that's odd. Where do they hide the route command In /usr/sbin. However, it has to be executed by root, due to security precautions: gomeisa[61]:~

RE: InternetCheckConnection

2000-07-26 Thread Patrik Stridvall
> > gomeisa[53]:~% /sbin/route -n ; uname -rs > > /sbin/route: Command not found. > > SunOS 5.6 > > > > Okay, that's odd. Where do they hide the route command In /usr/sbin/route. However route fails, since only root the sufficent permission to do this on Solaris. > A configure test of the

Re: InternetCheckConnection

2000-07-26 Thread David Elliott
Gerald Pfeifer wrote: > On Wed, 26 Jul 2000, David Elliott wrote: > > Easy in bash: > > if /sbin/route -n | grep "^0.0.0.0" > > then > > echo "Nothin' but 'net" > > else > > echo "Please connect to the 'net" > > fi > > Sorry, not all the world is Linux: > Yes, that is correct > > gome

Re: InternetCheckConnection

2000-07-26 Thread Gerald Pfeifer
On Wed, 26 Jul 2000, David Elliott wrote: > Easy in bash: > if /sbin/route -n | grep "^0.0.0.0" > then > echo "Nothin' but 'net" > else > echo "Please connect to the 'net" > fi Sorry, not all the world is Linux: gomeisa[53]:~% /sbin/route -n ; uname -rs /sbin/route: Command not found

Listbox: Infinite loop

2000-07-26 Thread Dirk Thierbach
The change by Stephane Lussier on 2000-06-07 broke my favorite 16bit application, Stars!. The problem is that after the change that Height of the listbox should be adjust when LBS_OWNERDRAWFIXED is set and not if LBS_OWNERDRAWVARIABLE is set, previously it was not adjusting the size in bot

Re: InternetCheckConnection

2000-07-26 Thread David Elliott
Marcus Meissner wrote: > On Tue, Jul 25, 2000 at 10:14:25AM -0500, Aric Stewart wrote: > > This implements InternetCheckConnection. Because i cannot do it properly > > i had to use a kludge where i call ping via a system call. Explanation > > as well as the way i wanted to to the ping are in the

RE: InternetCheckConnection

2000-07-26 Thread Stephane Lussier
Marcus, looking at Microsoft documentation seems to indicate if FLAG_ICC_FORCE_CONNECTION is set, it should try to ping the URL. http://msdn.microsoft.com/workshop/networking/wininet/reference/functions/In ternetCheckConnection.asp Stephane Lussier Macadamian Technologies > ---

Re: InternetCheckConnection

2000-07-26 Thread Andreas Mohr
On Wed, Jul 26, 2000 at 12:00:43PM +0200, Marcus Meissner wrote: > On Tue, Jul 25, 2000 at 10:14:25AM -0500, Aric Stewart wrote: > > This implements InternetCheckConnection. Because i cannot do it properly > > i had to use a kludge where i call ping via a system call. Explanation > > as well as th

Re: ddraw compilation fixes

2000-07-26 Thread Marcus Meissner
On Sun, Jul 23, 2000 at 10:01:10PM +, Eric Pouech wrote: > (I assume Marcus forgot to patch those I just hope there are > no other floating around) > > RCS file: /home/cvs/cvsroot/wine/wine/dlls/ddraw/d3dtexture.c,v > RCS file: /home/cvs/cvsroot/wine/wine/dlls/ddraw/d3ddevice/mesa.c,v Yu

Re: Bugreport: byacc 1.9 fails to generate $default transitions fornon-terminals

2000-07-26 Thread Bertho Stultiens
Robert Corbett wrote: > > Transitions on declared, but unused tokens are not included into state > > transitions. You normally would get $default transitions, but byacc > > insists on specifying all tokens. This leads to wrong > > results because a syntax-error is generated on a perfectly legal in