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 <nhorman@tuxdriver.com>
This commit is contained in:
Neil Horman 2011-10-10 08:54:54 -04:00
parent 171bbdce01
commit c739059a61

View file

@ -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