summaryrefslogtreecommitdiffstats
path: root/package/tcpdump/tcpdump.00-extern-inline-fixup.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-11-06 13:48:39 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2010-11-06 13:48:39 +0100
commit94f2063773fb23431cce33ed19052c5b4eae6564 (patch)
tree63326e46356752ea6c054dfe8769c50f80bf96c4 /package/tcpdump/tcpdump.00-extern-inline-fixup.patch
parenta3a88a31552460c1e2aac6a746480eef98d07dfb (diff)
downloadbuildroot-novena-94f2063773fb23431cce33ed19052c5b4eae6564.tar.gz
buildroot-novena-94f2063773fb23431cce33ed19052c5b4eae6564.zip
tcpdump: bump version
The old version didn't build with the updated libpcap anymore. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/tcpdump/tcpdump.00-extern-inline-fixup.patch')
-rw-r--r--package/tcpdump/tcpdump.00-extern-inline-fixup.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/tcpdump/tcpdump.00-extern-inline-fixup.patch b/package/tcpdump/tcpdump.00-extern-inline-fixup.patch
deleted file mode 100644
index 9236f638c..000000000
--- a/package/tcpdump/tcpdump.00-extern-inline-fixup.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- tcpdump-3.9.5.oorig/tcpdump-stdinc.h 2006-06-23 04:07:27.000000000 +0200
-+++ tcpdump-3.9.5/tcpdump-stdinc.h 2007-05-14 10:26:25.000000000 +0200
-@@ -149,15 +149,15 @@ typedef char* caddr_t;
- #undef htonl
- #undef htons
-
-- extern __inline__ unsigned long __ntohl (unsigned long x);
-- extern __inline__ unsigned short __ntohs (unsigned short x);
-+ static __inline__ unsigned long __ntohl (unsigned long x);
-+ static __inline__ unsigned short __ntohs (unsigned short x);
-
- #define ntohl(x) __ntohl(x)
- #define ntohs(x) __ntohs(x)
- #define htonl(x) __ntohl(x)
- #define htons(x) __ntohs(x)
-
-- extern __inline__ unsigned long __ntohl (unsigned long x)
-+ static __inline__ unsigned long __ntohl (unsigned long x)
- {
- __asm__ ("xchgb %b0, %h0\n\t" /* swap lower bytes */
- "rorl $16, %0\n\t" /* swap words */
-@@ -166,7 +166,7 @@ typedef char* caddr_t;
- return (x);
- }
-
-- extern __inline__ unsigned short __ntohs (unsigned short x)
-+ static __inline__ unsigned short __ntohs (unsigned short x)
- {
- __asm__ ("xchgb %b0, %h0" /* swap bytes */
- : "=q" (x) : "0" (x));