summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-06-08 13:03:32 +0200
committerFlorian Westphal <fw@strlen.de>2018-06-08 13:07:27 +0200
commitd1eeae816d39cb426654a721188428fd6d27959b (patch)
tree66ed10ec027bda34c1c43fcc484d74bae0f3cedf
parentd3a395e2e77f86f25946b0b1da52f341d0c1cb3b (diff)
build: libnftnl 1.1.1 releaselibnftnl-1.1.1
Check for libmnl >= 1.0.3 just like nftables does. Signed-off-by: Florian Westphal <fw@strlen.de>
-rw-r--r--Make_global.am2
-rw-r--r--configure.ac4
2 files changed, 3 insertions, 3 deletions
diff --git a/Make_global.am b/Make_global.am
index dabdb8c..e12a3f7 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -18,7 +18,7 @@
# set age to 0.
# </snippet>
#
-LIBVERSION=9:0:2
+LIBVERSION=10:0:3
AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_srcdir}/include ${LIBMNL_CFLAGS} ${LIBMXML_CFLAGS}
AM_CFLAGS = ${regular_CFLAGS} ${GCC_FVISIBILITY_HIDDEN}
diff --git a/configure.ac b/configure.ac
index 3c93e3b..dbb723d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to create configure.
-AC_INIT([libnftnl], [1.1.0])
+AC_INIT([libnftnl], [1.1.1])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
@@ -14,7 +14,7 @@ dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl Dependencies
-PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.0])
+PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.3])
AC_ARG_WITH([json-parsing],
AS_HELP_STRING([--with-json-parsing], [JSON parsing support]))