From 15ba68f5840b739bbabce06220aee6c53b17a4e5 Mon Sep 17 00:00:00 2001 From: Marcin Szymkowski Date: Tue, 3 Dec 2013 11:23:22 +0100 Subject: [PATCH] Update configure.ac I reckon to add "requires libnl3-dev" instead of only libnl. I was trying to ./configure bmon for about 15 mins without success only because error message was showing me that my system is missing libnl not libnl3 :-( --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 80ab991..b1e2954 100644 --- a/configure.ac +++ b/configure.ac @@ -66,7 +66,7 @@ fi PKG_CHECK_MODULES([CONFUSE], [libconfuse], [], AC_MSG_ERROR([requires libconfuse])) -PKG_CHECK_MODULES([LIBNL], [libnl-3.0], [], AC_MSG_ERROR([requires libnl])) +PKG_CHECK_MODULES([LIBNL], [libnl-3.0], [], AC_MSG_ERROR([requires libnl3-dev])) PKG_CHECK_MODULES([LIBNL_ROUTE], [libnl-route-3.0], [], AC_MSG_ERROR([requires libnl3-route])) AC_CHECK_LIB(m, pow, [], AC_MSG_ERROR([requires libm]))