aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-07 12:23:44 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-07 12:23:44 +0000
commitc0cd9f29d21e85bf5140a62ca6804b3a0ae28a94 (patch)
tree70a819d45ca49e156e46b3e37127958a4668294a
parenta05c0716c256a95861c01d06b5319f3149fca33a (diff)
downloadbusybox-w32-c0cd9f29d21e85bf5140a62ca6804b3a0ae28a94.tar.gz
busybox-w32-c0cd9f29d21e85bf5140a62ca6804b3a0ae28a94.tar.bz2
busybox-w32-c0cd9f29d21e85bf5140a62ca6804b3a0ae28a94.zip
Fix trivial problems: "make clean" cleaning too much
and add #include to pull in __be32 typedef.
-rw-r--r--Makefile2
-rw-r--r--networking/tcpudp.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 308ea42cd..37b6d9bf9 100644
--- a/Makefile
+++ b/Makefile
@@ -931,7 +931,7 @@ endif # CONFIG_MODULES
931 931
932# Directories & files removed with 'make clean' 932# Directories & files removed with 'make clean'
933CLEAN_DIRS += $(MODVERDIR) 933CLEAN_DIRS += $(MODVERDIR)
934CLEAN_FILES += busybox* System.map .kernelrelease \ 934CLEAN_FILES += busybox busybox_unstripped* System.map .kernelrelease \
935 .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map 935 .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map
936 936
937# Directories & files removed with 'make mrproper' 937# Directories & files removed with 'make mrproper'
diff --git a/networking/tcpudp.c b/networking/tcpudp.c
index 0b604af48..07a87b8ed 100644
--- a/networking/tcpudp.c
+++ b/networking/tcpudp.c
@@ -31,6 +31,7 @@
31 31
32#include "libbb.h" 32#include "libbb.h"
33/* Wants <limits.h> etc, thus included after libbb.h: */ 33/* Wants <limits.h> etc, thus included after libbb.h: */
34#include <linux/types.h> /* for __be32 etc */
34#include <linux/netfilter_ipv4.h> 35#include <linux/netfilter_ipv4.h>
35 36
36// TODO: move into this file: 37// TODO: move into this file: