diff options
author | Thomas Graf <tgraf@suug.ch> | 2013-01-22 18:07:09 (GMT) |
---|---|---|
committer | Thomas Graf <tgraf@suug.ch> | 2013-01-23 10:02:37 (GMT) |
commit | 7559157f2d21a7fe52853c76eb4dd7fa8d0ffd7c (patch) | |
tree | c66220e453716d202e457599ab7355cde5564921 /configure.ac | |
parent | 5291af6fb502e1bde7545a6eef261cdf40246110 (diff) | |
download | libnl-7559157f2d21a7fe52853c76eb4dd7fa8d0ffd7c.zip libnl-7559157f2d21a7fe52853c76eb4dd7fa8d0ffd7c.tar.gz libnl-7559157f2d21a7fe52853c76eb4dd7fa8d0ffd7c.tar.bz2 |
Undo soname bump
The soname was bumped before 3.2.18 was released to reflect
an ABI change in the cache and object API.
This caused a discussion with various distribution maintainers
involved as it prevented them from including the release in
their stable branches. This is especially unfortunate as the
corresponding API is unused outside of libnl as of now.
For this reason, I have decided to undo the soname bump and
instead remove the corresponding header files from the list of
installable headers and thus remove them from the public API.
This is a API break technically but since nobody is using
them it should not matter. If you are in fact using any of the
*-api.h headers please let me know and we are most likely to
start a new development branch.
If your application linked against 3.2.18 or 3.2.19 you will need
to relink if you want it to use >= 3.2.20.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 148cf5d..08b61a4 100644 --- a/configure.ac +++ b/configure.ac @@ -34,9 +34,9 @@ m4_define([libnl_micro_version], [19]) # 6. If any interfaces have been removed since the last public release, then # set age to 0. -m4_define([libnl_lt_current], [215]) +m4_define([libnl_lt_current], [216]) m4_define([libnl_lt_revision], [0]) -m4_define([libnl_lt_age], [14]) +m4_define([libnl_lt_age], [16]) m4_define([libnl_version], [libnl_major_version.libnl_minor_version.libnl_micro_version]) |