At Sat, 22 Jan 2005 01:17:45 +0100,
Guillem Jover <[EMAIL PROTECTED]> wrote:
> * linux/dev/include/linux/skbuff.h (skb_put, skb_push): Fix errors
> for deprecated use of labels at end of compound statements.
> * i386/i386/fpe_linkage.c (enable_fpe): Declare.
Applied, thanks!
Mar
Hi,
[ This is a repost of the patch. ]
We are using this patch currently on the Debian gnumach package.
It fixes build failures with gcc 3.4.
I've corrected the stuff Alfred commented last time.
regards,
guillem
2005-01-10 Guillem Jover <[EMAIL PROTECTED]>
* linux/dev/include/linux
@@ -405,8 +405,8 @@
if(skb->tail>skb->end)
{
__label__ here;
-panic("skput:over: %p:%d", &&here,len);
here:
+panic("skput:over: %p:%d", &&here,len);
}
return tmp;
}
This is wrong. It should be:
Hi,
Some patches to build gnumach with gcc 3.4.
2004-09-15 Guillem Jover <[EMAIL PROTECTED]>
* linux/dev/include/linux/skbuff.h (skb_put, skb_push): Fix errors
for deprecated use of labels at end of compound statements.
* i386/i386/fpe_linkage.c: Forward declare enable