@@ -95,6 +95,7 @@ fi
##########################################################################
# Set conditionals as computed within platform specific files
##########################################################################
+AM_CONDITIONAL([dpdk_support], [test x$dpdk_support = xyes ])
AM_CONDITIONAL([netmap_support], [test x$netmap_support = xyes ])
AM_CONDITIONAL([HAVE_PCAP], [test $have_pcap = yes])
@@ -1,6 +1,7 @@
##########################################################################
# Enable DPDK support
##########################################################################
+dpdk_support=no
AC_ARG_ENABLE([dpdk_support],
[ --enable-dpdk-support include dpdk IO support],
[if test x$enableval = xyes; then
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> --- configure.ac | 1 + platform/linux-generic/m4/odp_dpdk.m4 | 1 + 2 files changed, 2 insertions(+)