N.B.: If you plan on keeping a SO version for some time, please consider adding symbol versions, so that requires on a particular libteam symbol/version can be properly tracked by e.g. rpm. Thanks.
=== The following changes since commit a78c60ac2ec3e4d7298acf46b8de0303722ec5c1:
teamd: lw arp: make validation less strict so arp requests are accepted as well (2013-02-22 16:25:19 +0100)
are available in the git repository at:
git://git.inai.de/libteam master
for you to fetch changes up to c2b4e3cfa34e27d11acfe947b0b799317a7aef24:
build: request libnl-route-3 and version 3.2.19 (2013-03-01 00:35:57 +0100)
---------------------------------------------------------------- Jan Engelhardt (1): build: request libnl-route-3 and version 3.2.19
configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Because libteam uses functions from libnl-route-3 (such as rtnl_link_add), it should also search for this library with pkgconfig, include its flags, and so on. Additionally, version 3.2.19 is required due to the use of, for example, rtnl_link_set_carrier.
Signed-off-by: Jan Engelhardt jengelh@inai.de --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac index d0f8e90..5b743e4 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ CFLAGS="$CFLAGS -Wall -Werror" AC_PROG_CC LT_INIT
-PKG_CHECK_MODULES([LIBNL], [libnl-3.0 libnl-genl-3.0 libnl-cli-3.0]) +PKG_CHECK_MODULES([LIBNL], [libnl-3.0 libnl-genl-3.0 libnl-route-3.0 >= 3.2.19 libnl-cli-3.0]) PKG_CHECK_MODULES([LIBDAEMON], [libdaemon]) PKG_CHECK_MODULES([JANSSON], [jansson]) PKG_CHECK_MODULES([DBUS], [dbus-1])
Fri, Mar 01, 2013 at 12:56:40AM CET, jengelh@inai.de wrote:
Because libteam uses functions from libnl-route-3 (such as rtnl_link_add), it should also search for this library with pkgconfig, include its flags, and so on. Additionally, version 3.2.19 is required due to the use of, for example, rtnl_link_set_carrier.
applied. Thanks Jan
libteam@lists.fedorahosted.org