Changeset d7fd648 for configure.in
- Timestamp:
- 12/19/14 15:47:34 (6 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 1960910
- Parents:
- 6e41e73
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
r092a09c rd7fd648 392 392 fi 393 393 394 # If we use DPDK we might be able to use libnuma 395 AC_CHECK_LIB(numa, numa_node_to_cpus, have_numa=1, have_numa=0) 396 394 397 # Checks for various "optional" libraries 395 398 AC_CHECK_LIB(pthread, pthread_create, have_pthread=1, have_pthread=0) … … 411 414 AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=1, have_clock_gettime=0) 412 415 LIBS= 416 417 if test "$have_numa" = 1; then 418 LIBTRACE_LIBS="$LIBTRACE_LIBS -lnuma" 419 AC_DEFINE(HAVE_LIBNUMA, 1, [Set to 1 if libnuma is found supported]) 420 with_numa=yes 421 else 422 AC_DEFINE(HAVE_LIBNUMA, 0, [Set to 1 if libnuma is found supported]) 423 with_numa=no 424 fi 413 425 414 426 if test "$dlfound" = 0; then … … 685 697 if test x"$libtrace_dpdk" = xtrue; then 686 698 AC_MSG_NOTICE([Compiled with DPDK live capture support: Yes]) 699 reportopt "Compiled with DPDK trace NUMA support" $with_numa 687 700 elif test x"$want_dpdk" != "xno"; then 688 701 # We don't officially support DPDK so only report failure if the user
Note: See TracChangeset
for help on using the changeset viewer.