From c739059a6171d3536bdb92bcde3657eed28f6b5d Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Mon, 10 Oct 2011 08:54:54 -0400 Subject: [PATCH] Add configure.ac checks to ensure presence of libnuma and libm irqbalance currently requries libnuma and libm be present. Augment the configure script to ensure they are available Signed-off-by: Neil Horman --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 523b2ea..fd0385f 100644 --- a/configure.ac +++ b/configure.ac @@ -55,6 +55,8 @@ AC_CHECK_HEADERS(linux/ethtool.h linux/sockios.h, [], []) AC_CHECK_FUNCS(getopt_long) +AC_CHECK_LIB(numa, numa_run_on_node, [], []) +AC_CHECK_LIB(m, floor, [], []) AC_C_CONST AC_C_INLINE