diff options
author | Luca Deri <deri@ntop.org> | 2017-06-30 11:32:23 -0400 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2017-06-30 11:32:23 -0400 |
commit | 5bf6be7eb80991c7525da2485599ad8c972fbbb5 (patch) | |
tree | c85d48b94dbf6efee5b303f8e611a6cf1f97e526 | |
parent | 4a1ced37099d32867cf531b8eb1bb31f9f3db558 (diff) |
Improved checks on libnuma
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1507cc43b..eec6878f5 100644 --- a/configure.ac +++ b/configure.ac @@ -40,7 +40,7 @@ SHORT_MACHINE=`uname -m | cut -b1-3` if test $SHORT_MACHINE = "arm"; then LIBNUMA="" else - LIBNUMA="-lnuma" + AC_CHECK_LIB([numa], [numa_available], [LIBNUMA="-lnuma"]) fi if test -f $PCAP_HOME/libpcap/libpcap.a; then : |