X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=configure.ac;h=ab8135f08773d7453a1ade7cf400c877d33f85a4;hb=ef5a03b12c0c75847a77cacd1f6fabf44c109df4;hp=4aa3af7d5b7eac90318746c262faee717e5d9acd;hpb=e6ce09aeed6b269f583e1d4a9c4b3586d1351917;p=collectd.git diff --git a/configure.ac b/configure.ac index 4aa3af7d..ab8135f0 100644 --- a/configure.ac +++ b/configure.ac @@ -2411,6 +2411,65 @@ then fi # }}} +# --with-libdpdk {{{ +AC_ARG_WITH(libdpdk, [AS_HELP_STRING([--with-libdpdk@<:@=PREFIX@:>@], [Path to the DPDK build directory.])], +[ + if test "x$withval" != "xno" && test "x$withval" != "xyes" + then + with_dpdk_path="$withval" + with_libdpdk="yes" + else + if test "x$withval" = "xno" + then + with_libdpdk="no (disabled)" + fi + fi +], [with_libdpdk="no"]) + +if test "x$with_libdpdk" = "xyes" +then + RTE_BUILD="$with_dpdk_path" + DPDK_INCLUDE="$RTE_BUILD/include/dpdk" + DPDK_LIB_DIR="$RTE_BUILD/lib" + DPDK_LIB="-ldpdk" + + SAVE_CFLAGS="$CFLAGS" + SAVE_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -L$DPDK_LIB_DIR" + CFLAGS="$CFLAGS -I$DPDK_INCLUDE" + FOUND_DPDK=false + SAVE_LIBS="$LIBS" + LIBS="$LIBS $DPDK_LIB" + AC_LINK_IFELSE( + [AC_LANG_PROGRAM( +[[ +#include +#include +]], +[[ +int rte_argc; +char ** rte_argv; +rte_eal_init(rte_argc, rte_argv); +]] + )], + [FOUND_DPDK=true]) + CFLAGS="$SAVE_CFLAGS" + LDFLAGS="$SAVE_LDFLAGS" + LIBS="$SAVE_LIBS" + if test "x$FOUND_DPDK" != "xtrue" + then + AC_MSG_ERROR([cannot link with dpdk]) + fi + DPDK_LDFLAGS="-ldpdk" + BUILD_WITH_DPDK_CFLAGS="-I$DPDK_INCLUDE" + BUILD_WITH_DPDK_LDFLAGS="-L$DPDK_LIB_DIR" + BUILD_WITH_DPDK_LIBS="$DPDK_LDFLAGS" + AC_SUBST(BUILD_WITH_DPDK_CFLAGS) + AC_SUBST(BUILD_WITH_DPDK_LDFLAGS) + AC_SUBST(BUILD_WITH_DPDK_LIBS) +fi +# }}} + # --with-java {{{ with_java_home="$JAVA_HOME" if test "x$with_java_home" = "x" @@ -5556,6 +5615,7 @@ plugin_curl_xml="no" plugin_df="no" plugin_disk="no" plugin_drbd="no" +plugin_dpdk="no" plugin_entropy="no" plugin_ethstat="no" plugin_fhcount="no" @@ -5974,6 +6034,7 @@ AC_PLUGIN([dbi], [$with_libdbi], [General database st AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics]) AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics]) AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis]) +AC_PLUGIN([dpdkstat], [$with_libdpdk], [Stats & Status from DPDK]) AC_PLUGIN([drbd], [$plugin_drbd], [DRBD statistics]) AC_PLUGIN([email], [yes], [EMail statistics]) AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics]) @@ -6299,6 +6360,7 @@ AC_MSG_RESULT([ libaquaero5 . . . . . $with_libaquaero5]) AC_MSG_RESULT([ libatasmart . . . . . $with_libatasmart]) AC_MSG_RESULT([ libcurl . . . . . . . $with_libcurl]) AC_MSG_RESULT([ libdbi . . . . . . . $with_libdbi]) + libdpdk . . . . . . . $with_libdpdk AC_MSG_RESULT([ libesmtp . . . . . . $with_libesmtp]) AC_MSG_RESULT([ libganglia . . . . . $with_libganglia]) AC_MSG_RESULT([ libgcrypt . . . . . . $with_libgcrypt]) @@ -6382,6 +6444,7 @@ AC_MSG_RESULT([ curl . . . . . . . . $enable_curl]) AC_MSG_RESULT([ curl_json . . . . . . $enable_curl_json]) AC_MSG_RESULT([ curl_xml . . . . . . $enable_curl_xml]) AC_MSG_RESULT([ dbi . . . . . . . . . $enable_dbi]) + dpdkstat . . . . . . .$enable_dpdkstat AC_MSG_RESULT([ df . . . . . . . . . $enable_df]) AC_MSG_RESULT([ disk . . . . . . . . $enable_disk]) AC_MSG_RESULT([ dns . . . . . . . . . $enable_dns])