Skip to content

Commit 3fe3454

Browse files
committed
libnl-3.4.0 release
Signed-off-by: Thomas Haller <[email protected]>
1 parent 148516c commit 3fe3454

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ m4_define([libnl_lt_revision], [0])
4040
m4_define([libnl_lt_age], [26])
4141

4242
m4_define([libnl_version],
43-
[libnl_major_version.libnl_minor_version.libnl_micro_version-rc1])
43+
[libnl_major_version.libnl_minor_version.libnl_micro_version])
4444

4545
AC_INIT(libnl, [libnl_version], [], [], [http://www.infradead.org/~tgr/libnl/])
4646
AC_CONFIG_HEADERS([lib/defs.h])

doc/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (c) 2003-2013 Thomas Graf <[email protected]>
1010
#
1111

12-
AC_INIT(libnl-doc, [3.4.0-rc1], [http://www.infradead.org/~tgr/libnl/])
12+
AC_INIT(libnl-doc, [3.4.0], [http://www.infradead.org/~tgr/libnl/])
1313
AC_CONFIG_MACRO_DIR([m4])
1414
AC_CONFIG_AUX_DIR([build-aux])
1515
AM_INIT_AUTOMAKE([foreign])

include/netlink/utils.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,12 @@ enum {
280280
NL_CAPABILITY_VERSION_3_3_0 = 27,
281281
#define NL_CAPABILITY_VERSION_3_3_0 NL_CAPABILITY_VERSION_3_3_0
282282

283+
/**
284+
* The library version is libnl3 3.4.0 or newer. This capability should never be backported.
285+
*/
286+
NL_CAPABILITY_VERSION_3_4_0 = 28,
287+
#define NL_CAPABILITY_VERSION_3_4_0 NL_CAPABILITY_VERSION_3_4_0
288+
283289
__NL_CAPABILITY_MAX,
284290
NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1),
285291
#define NL_CAPABILITY_MAX NL_CAPABILITY_MAX

lib/utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ int nl_has_capability (int capability)
12201220
NL_CAPABILITY_VERSION_3_2_29,
12211221
NL_CAPABILITY_XFRM_SP_SEC_CTX_LEN,
12221222
NL_CAPABILITY_VERSION_3_3_0,
1223-
0,
1223+
NL_CAPABILITY_VERSION_3_4_0,
12241224
0,
12251225
0,
12261226
0,

0 commit comments

Comments
 (0)