summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2005-02-07 06:41:14 +0000
committerGuillem Jover <guillem@debian.org>2005-02-07 06:41:14 +0000
commit8dfc935597d5f5616910a82a4f5d0d3d915eaea1 (patch)
tree89a7b5f50c4718f93b66d47e2869dbaa48b76125 /debian/patches
parent37c3114b1ec97bc88f4570ca8b77a18033883313 (diff)
Sync patches with latest ones sent to upstream.
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/00_autoconf_update.patch2
-rw-r--r--debian/patches/12_fixes_gcc-3.4.patch18
2 files changed, 8 insertions, 12 deletions
diff --git a/debian/patches/00_autoconf_update.patch b/debian/patches/00_autoconf_update.patch
index aae2454..644cb02 100644
--- a/debian/patches/00_autoconf_update.patch
+++ b/debian/patches/00_autoconf_update.patch
@@ -290,7 +290,7 @@ diff -Naur gnumach-20040915.orig/Drivers.macros gnumach-20040915/Drivers.macros
-AC_ARG_ENABLE([$1],,
-enable_[$2]="$enable_[$1]"
+AC_ARG_ENABLE([$1],
-+ AS_HELP_STRING([--enable-$1], [enable driver alias $1]),
++ AS_HELP_STRING([--enable-$1], [enable driver alias $1 for $2]),
+ [enable_$2="$enable_$1"]
)])
diff --git a/debian/patches/12_fixes_gcc-3.4.patch b/debian/patches/12_fixes_gcc-3.4.patch
index 6833b4d..f705552 100644
--- a/debian/patches/12_fixes_gcc-3.4.patch
+++ b/debian/patches/12_fixes_gcc-3.4.patch
@@ -1,6 +1,6 @@
#DPATCHLEVEL=1
-2004-09-15 Guillem Jover <guillem@hadrons.org>
+2005-01-10 Guillem Jover <guillem@hadrons.org>
* linux/dev/include/linux/skbuff.h (skb_put, skb_push): Fix errors
for deprecated use of labels at end of compound statements.
@@ -10,23 +10,19 @@
diff -Naur gnumach-20040229.orig/linux/dev/include/linux/skbuff.h gnumach-20040229/linux/dev/include/linux/skbuff.h
--- gnumach-20040229.orig/linux/dev/include/linux/skbuff.h 26 Apr 1999 05:48:00 -0000 1.1
+++ gnumach-20040229/linux/dev/include/linux/skbuff.h 15 Sep 2004 12:52:34 -0000
-@@ -405,8 +405,8 @@
- if(skb->tail>skb->end)
- {
+@@ -407,6 +407,7 @@
__label__ here;
-- panic("skput:over: %p:%d", &&here,len);
+ panic("skput:over: %p:%d", &&here,len);
here:
-+ panic("skput:over: %p:%d", &&here,len);
++ ;
}
return tmp;
}
-@@ -418,8 +418,8 @@
- if(skb->data<skb->head)
- {
+@@ -420,6 +421,7 @@
__label__ here;
-- panic("skpush:under: %p:%d", &&here,len);
+ panic("skpush:under: %p:%d", &&here,len);
here:
-+ panic("skpush:under: %p:%d", &&here,len);
++ ;
}
return skb->data;
}