summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--userspace/ebtables2/ChangeLog7
-rw-r--r--userspace/ebtables2/Makefile10
2 files changed, 15 insertions, 2 deletions
diff --git a/userspace/ebtables2/ChangeLog b/userspace/ebtables2/ChangeLog
index 09c273f..e4711ad 100644
--- a/userspace/ebtables2/ChangeLog
+++ b/userspace/ebtables2/ChangeLog
@@ -1,3 +1,10 @@
+20030724
+ * added (automatic) Sparc64 support
+20030717
+ * added stp frames match type
+20030713
+ * added support for deleting all user-defined chains (-X option
+ without specified chain)
20030601
* added --Lmac2
* <csv_at_bluetail.com> Chris Vitale: basic 802.3/802.2 filtering
diff --git a/userspace/ebtables2/Makefile b/userspace/ebtables2/Makefile
index 75c2cc0..2a8dbcf 100644
--- a/userspace/ebtables2/Makefile
+++ b/userspace/ebtables2/Makefile
@@ -1,13 +1,17 @@
# ebtables Makefile
PROGNAME:=ebtables
-PROGVERSION:=2.0.4
-PROGDATE:=April\ 2003
+PROGVERSION:=2.0.5
+PROGDATE:=July\ 2003
MANDIR?=/usr/local/man
CFLAGS:=-Wall -Wunused
CC:=gcc
+ifeq ($(shell uname -m),sparc64)
+CFLAGS+=-DEBT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32
+endif
+
include extensions/Makefile
OBJECTS:=getethertype.o ebtables.o communication.o $(EXT_OBJS)
@@ -75,5 +79,7 @@ release:
install -m 0644 -o root -g root \
$(KERNEL_INCLUDES)/linux/netfilter_bridge/*.h \
include/linux/netfilter_bridge/
+ install -m 0644 -o root -g root \
+ include/ebtables.h include/linux/netfilter_bridge/
make clean
cd ..;tar -c $(DIR) | gzip >$(DIR).tar.gz