diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-01 10:00:00 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-01 10:00:00 +0000 |
commit | c9477eea895a186deba7b7e18fbfc323b6c90813 (patch) | |
tree | 62e1598abc204f6f2fbe448ec25de622d49f1834 /package/busybox/busybox-1.10.0-tcpudp.patch | |
parent | e2f56edbd37cd6036dae8d768054fdeeb3c4bdfe (diff) | |
download | buildroot-novena-c9477eea895a186deba7b7e18fbfc323b6c90813.tar.gz buildroot-novena-c9477eea895a186deba7b7e18fbfc323b6c90813.zip |
busybox: additional 1.10.0 fix
Diffstat (limited to 'package/busybox/busybox-1.10.0-tcpudp.patch')
-rw-r--r-- | package/busybox/busybox-1.10.0-tcpudp.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.10.0-tcpudp.patch b/package/busybox/busybox-1.10.0-tcpudp.patch new file mode 100644 index 000000000..1a9b97b59 --- /dev/null +++ b/package/busybox/busybox-1.10.0-tcpudp.patch @@ -0,0 +1,16 @@ +--- busybox-1.10.0/networking/tcpudp.c Thu Mar 20 12:46:42 2008 ++++ busybox-1.10.0-tcpudp/networking/tcpudp.c Mon Mar 31 21:27:38 2008 +@@ -29,10 +29,10 @@ + * - don't know how to retrieve ORIGDST for udp. + */ + +-#include <limits.h> +-#include <linux/netfilter_ipv4.h> /* wants <limits.h> */ +- + #include "libbb.h" ++/* Wants <limits.h> etc, thus included after libbb.h: */ ++#include <linux/netfilter_ipv4.h> ++ + // TODO: move into this file: + #include "tcpudp_perhost.h" + |