svn commit: trunk/busybox: networking
vda at busybox.net
vda at busybox.net
Sat Jun 7 05:23:44 PDT 2008
Author: vda
Date: 2008-06-07 05:23:44 -0700 (Sat, 07 Jun 2008)
New Revision: 22256
Log:
Fix trivial problems: "make clean" cleaning too much
and add #include to pull in __be32 typedef.
Modified:
trunk/busybox/Makefile
trunk/busybox/networking/tcpudp.c
Changeset:
Modified: trunk/busybox/Makefile
===================================================================
--- trunk/busybox/Makefile 2008-06-07 09:40:16 UTC (rev 22255)
+++ trunk/busybox/Makefile 2008-06-07 12:23:44 UTC (rev 22256)
@@ -931,7 +931,7 @@
# Directories & files removed with 'make clean'
CLEAN_DIRS += $(MODVERDIR)
-CLEAN_FILES += busybox* System.map .kernelrelease \
+CLEAN_FILES += busybox busybox_unstripped* System.map .kernelrelease \
.tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map
# Directories & files removed with 'make mrproper'
Modified: trunk/busybox/networking/tcpudp.c
===================================================================
--- trunk/busybox/networking/tcpudp.c 2008-06-07 09:40:16 UTC (rev 22255)
+++ trunk/busybox/networking/tcpudp.c 2008-06-07 12:23:44 UTC (rev 22256)
@@ -31,6 +31,7 @@
#include "libbb.h"
/* Wants <limits.h> etc, thus included after libbb.h: */
+#include <linux/types.h> /* for __be32 etc */
#include <linux/netfilter_ipv4.h>
// TODO: move into this file:
More information about the busybox-cvs
mailing list