libnl-3.2.26 release
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
parent
31d7d19393
commit
8f5c65beee
4 changed files with 10 additions and 4 deletions
|
@ -40,7 +40,7 @@ m4_define([libnl_lt_revision], [0])
|
|||
m4_define([libnl_lt_age], [21])
|
||||
|
||||
m4_define([libnl_version],
|
||||
[libnl_major_version.libnl_minor_version.libnl_micro_version-rc1])
|
||||
[libnl_major_version.libnl_minor_version.libnl_micro_version])
|
||||
|
||||
AC_INIT(libnl, [libnl_version], [], [], [http://www.infradead.org/~tgr/libnl/])
|
||||
AC_CONFIG_HEADERS([lib/defs.h])
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
# Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
|
||||
#
|
||||
|
||||
AC_INIT(libnl-doc, [3.2.26-rc1], [http://www.infradead.org/~tgr/libnl/])
|
||||
AC_INIT(libnl-doc, [3.2.26], [http://www.infradead.org/~tgr/libnl/])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
AM_INIT_AUTOMAKE([foreign])
|
||||
|
|
|
@ -129,6 +129,12 @@ enum {
|
|||
NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO = 6,
|
||||
#define NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO
|
||||
|
||||
/**
|
||||
* The library version is libnl3 3.2.26 or newer. This capability should never be backported.
|
||||
*/
|
||||
NL_CAPABILITY_VERSION_3_2_26 = 7,
|
||||
#define NL_CAPABILITY_VERSION_3_2_26 NL_CAPABILITY_VERSION_3_2_26
|
||||
|
||||
__NL_CAPABILITY_MAX,
|
||||
NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1),
|
||||
#define NL_CAPABILITY_MAX NL_CAPABILITY_MAX
|
||||
|
|
|
@ -1150,7 +1150,7 @@ int nl_has_capability (int capability)
|
|||
NL_CAPABILITY_NL_CONNECT_RETRY_GENERATE_PORT_ON_ADDRINUSE,
|
||||
NL_CAPABILITY_ROUTE_LINK_GET_KERNEL_FAIL_OPNOTSUPP,
|
||||
NL_CAPABILITY_ROUTE_ADDR_COMPARE_CACHEINFO,
|
||||
0,
|
||||
NL_CAPABILITY_VERSION_3_2_26,
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue