From 1dc1ae3ec5f5a908826a3a31422716ca970e1d7a Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 11 Dec 2010 18:21:21 +0100 Subject: [PATCH] build: restore compilation of ipset, add missing CFLAGS ipset_iphash.c: In function "iphash_create_init": ipset_iphash.c:42: error: "IP_NF_SET_HASHSIZE" undeclared (first use in this function) --- extensions/ipset/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/ipset/Makefile.am b/extensions/ipset/Makefile.am index 2603ca6..b9a7d65 100644 --- a/extensions/ipset/Makefile.am +++ b/extensions/ipset/Makefile.am @@ -1,6 +1,7 @@ # -*- Makefile -*- -AM_CFLAGS = ${regular_CFLAGS} -DIPSET_LIB_DIR=\"${xtlibdir}\" +AM_CFLAGS = ${regular_CFLAGS} -DIPSET_LIB_DIR=\"${xtlibdir}\" \ + -DIP_NF_SET_HASHSIZE=1024 include ../../Makefile.extra