Changeset 6c09048 for configure.in
- Timestamp:
- 02/27/15 11:11:30 (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:
- 7718e54
- Parents:
- b81f0a1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
r4631115 r6c09048 417 417 if test "$have_numa" = 1; then 418 418 LIBTRACE_LIBS="$LIBTRACE_LIBS -lnuma" 419 AC_DEFINE(HAVE_LIBNUMA, 1, [Set to 1 if libnuma is foundsupported])419 AC_DEFINE(HAVE_LIBNUMA, 1, [Set to 1 if libnuma is supported]) 420 420 with_numa=yes 421 421 else 422 AC_DEFINE(HAVE_LIBNUMA, 0, [Set to 1 if libnuma is foundsupported])422 AC_DEFINE(HAVE_LIBNUMA, 0, [Set to 1 if libnuma is supported]) 423 423 with_numa=no 424 424 fi … … 457 457 458 458 if test "$have_clock_gettime" = 1; then 459 LIBTRACE_LIBS="$LIBTRACE_LIBS -lrt" 459 LIBTRACE_LIBS="$LIBTRACE_LIBS -lrt" 460 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Set to 1 if clock_gettime is supported]) 461 with_clock_gettime=yes 462 else 463 AC_DEFINE(HAVE_CLOCK_GETTIME, 0, [Set to 1 if clock_gettime is supported]) 464 with_clock_gettime=no 460 465 fi 461 466 … … 699 704 700 705 if test x"$libtrace_dpdk" = xtrue; then 701 AC_MSG_NOTICE([Compiled with DPDK live capture support: Yes]) 702 reportopt "Compiled with DPDK trace NUMA support" $with_numa 706 AC_MSG_NOTICE([Compiled with DPDK live capture support: Yes]) 707 reportopt "Compiled with DPDK trace NUMA support" $with_numa 708 reportopt "Compiled with clock_gettime support" $with_clock_gettime 703 709 elif test x"$want_dpdk" != "xno"; then 704 710 # We don't officially support DPDK so only report failure if the user 705 711 # explicitly asked for DPDK. That way, we can hopefully keep it hidden 706 712 # from most users for now... 707 708 709 713 714 AC_MSG_NOTICE([Compiled with DPDK live capture support: No]) 715 AC_MSG_NOTICE([Note: Requires DPDK v1.5 or newer]) 710 716 fi 711 717 reportopt "Compiled with LLVM BPF JIT support" $JIT
Note: See TracChangeset
for help on using the changeset viewer.