diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-07-19 18:51:10 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-07-19 18:51:10 +0200 |
commit | 05facb7674600fa6543e39b08785ba00bbd71481 (patch) | |
tree | 2242fdcafda7844896a86bbc6ecad159e678cf6c /debian/patches/upstreamme0005-linux-net-fix-build-with-O0.patch | |
parent | 32ea8a51ad631ddbcb9c31022d7dafc2e1c43b62 (diff) |
drop old patch series
Diffstat (limited to 'debian/patches/upstreamme0005-linux-net-fix-build-with-O0.patch')
-rw-r--r-- | debian/patches/upstreamme0005-linux-net-fix-build-with-O0.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/debian/patches/upstreamme0005-linux-net-fix-build-with-O0.patch b/debian/patches/upstreamme0005-linux-net-fix-build-with-O0.patch deleted file mode 100644 index 169eff5..0000000 --- a/debian/patches/upstreamme0005-linux-net-fix-build-with-O0.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 92e98a7f4d4fa75b286a067e1d1caef514fccb0d Mon Sep 17 00:00:00 2001 -From: Justus Winter <4winter@informatik.uni-hamburg.de> -Date: Sat, 18 Jul 2015 18:52:22 +0200 -Subject: [PATCH gnumach 5/5] linux/net: fix build with -O0 - -* linux/src/drivers/net/pci-scan.c: Avoid #erroring out. ---- - linux/src/drivers/net/pci-scan.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/linux/src/drivers/net/pci-scan.c b/linux/src/drivers/net/pci-scan.c -index 60525b7..ffb7b12 100644 ---- a/linux/src/drivers/net/pci-scan.c -+++ b/linux/src/drivers/net/pci-scan.c -@@ -31,7 +31,7 @@ static int min_pci_latency = 32; - #if ! defined(__KERNEL__) - #define __KERNEL__ 1 - #endif --#if !defined(__OPTIMIZE__) -+#if !defined(__OPTIMIZE__) && /* Mach glue, we think this is ok now: */ 0 - #warning You must compile this file with the correct options! - #warning See the last lines of the source file. - #error You must compile this driver with the proper options, including "-O". --- -2.1.4 - |