diff options
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | doc/configure.ac | 2 | ||||
| -rw-r--r-- | include/netlink/utils.h | 6 | ||||
| -rw-r--r-- | lib/utils.c | 4 |
4 files changed, 10 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 4db4385..91d4ae3 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ # copied from glib m4_define([libnl_major_version], [3]) -m4_define([libnl_minor_version], [9]) +m4_define([libnl_minor_version], [10]) m4_define([libnl_micro_version], [0]) m4_define([libnl_git_sha], [m4_esyscmd([ ( [ -d ./.git/ ] && [ "$(readlink -f ./.git/)" = "$(readlink -f "$(git rev-parse --git-dir 2>/dev/null)" 2>/dev/null)" ] && git rev-parse --verify -q HEAD 2>/dev/null ) || true ])]) diff --git a/doc/configure.ac b/doc/configure.ac index c16e20e..5b4fd4e 100644 --- a/doc/configure.ac +++ b/doc/configure.ac @@ -3,7 +3,7 @@ # Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch> # -AC_INIT(libnl-doc, [3.9.0], [http://www.infradead.org/~tgr/libnl/]) +AC_INIT(libnl-doc, [3.10.0], [http://www.infradead.org/~tgr/libnl/]) AC_CONFIG_MACRO_DIR([../m4]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) diff --git a/include/netlink/utils.h b/include/netlink/utils.h index b3a5951..ac91d4c 100644 --- a/include/netlink/utils.h +++ b/include/netlink/utils.h @@ -349,6 +349,12 @@ enum { NL_CAPABILITY_VERSION_3_12_0 = 38, #define NL_CAPABILITY_VERSION_3_12_0 NL_CAPABILITY_VERSION_3_12_0 + /** + * The library version is libnl3 3.13.0 or newer. This capability should never be backported. + */ + NL_CAPABILITY_VERSION_3_13_0 = 39, +#define NL_CAPABILITY_VERSION_3_13_0 NL_CAPABILITY_VERSION_3_13_0 + __NL_CAPABILITY_MAX, NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1), #define NL_CAPABILITY_MAX NL_CAPABILITY_MAX diff --git a/lib/utils.c b/lib/utils.c index 679078e..41ff8eb 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -1284,10 +1284,10 @@ int nl_has_capability (int capability) NL_CAPABILITY_VERSION_3_7_0, NL_CAPABILITY_VERSION_3_8_0, NL_CAPABILITY_VERSION_3_9_0, - 0, /* NL_CAPABILITY_VERSION_3_10_0 */ + NL_CAPABILITY_VERSION_3_10_0, 0, /* NL_CAPABILITY_VERSION_3_11_0 */ 0, /* NL_CAPABILITY_VERSION_3_12_0 */ - 0, + 0, /* NL_CAPABILITY_VERSION_3_13_0 */ 0), /* IMPORTANT: these capability numbers are intended to be universal and stable * for libnl3. Don't allocate new numbers on your own that differ from upstream |
