diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-09-27 17:18:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-09-27 17:18:56 +0000 |
commit | 6064080971ebc81ea1e92d12cc2e5619997757b7 (patch) | |
tree | efef2a00bb8d6c2fbcc97512446c32f94b110c07 | |
parent | 3f01d0898e531322d9d935ad3f16a9d7599ff386 (diff) | |
download | upstream-6064080971ebc81ea1e92d12cc2e5619997757b7.tar.gz upstream-6064080971ebc81ea1e92d12cc2e5619997757b7.tar.bz2 upstream-6064080971ebc81ea1e92d12cc2e5619997757b7.zip |
fix stdint include patch
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4868 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/linux-atm/patches/400-stdint_local_instead_of_host.patch | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/package/linux-atm/patches/400-stdint_local_instead_of_host.patch b/package/linux-atm/patches/400-stdint_local_instead_of_host.patch index 5e9b3b65e3..7c1e8c14f4 100644 --- a/package/linux-atm/patches/400-stdint_local_instead_of_host.patch +++ b/package/linux-atm/patches/400-stdint_local_instead_of_host.patch @@ -1,20 +1,12 @@ -Index: package/linux-atm/patches/400-stdint-local-instead-of-host.patch -=================================================================== ---- package/linux-atm/patches/400-stdint-local-instead-of-host.patch (revision 0) -+++ package/linux-atm/patches/400-stdint-local-instead-of-host.patch (revision 0) -@@ -0,0 +1,15 @@ -+--- linux-atm-2.4.1/src/include/stdint.h 2001-09-03 20:41:06.000000000 +0200 -++++ linux-atm-2.4.1/src/include/stdint.h.my 2006-08-26 22:08:41.000000000 +0200 -+@@ -4,11 +4,7 @@ -+ -+ #include <features.h> -+ -+-#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 -+- -+-#include "/usr/include/stdint.h" -+- -+-#elif __GLIBC__ >= 2 -++#if __GLIBC__ >= 2 -+ -+ /* Works for i386 and Alpha */ -+ +diff -ur linux-atm.old/src/include/stdint.h linux-atm.dev/src/include/stdint.h +--- linux-atm.old/src/include/stdint.h 2001-09-03 20:41:06.000000000 +0200 ++++ linux-atm.dev/src/include/stdint.h 2006-09-27 19:13:56.000000000 +0200 +@@ -6,7 +6,7 @@ + + #if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 + +-#include "/usr/include/stdint.h" ++#include_next <stdint.h> + + #elif __GLIBC__ >= 2 + |