From bc253c90c5d13d14b658829cb1159c0467332a8f Mon Sep 17 00:00:00 2001 From: srsurend Date: Sun, 23 Apr 2017 12:38:20 -0400 Subject: Added initial changes for odp support with vpp. Change-Id: Ieb5c099c360cddd6f6b784da2838d543ceb1cb92 Signed-off-by: srsurend Signed-off-by: sachin saxena --- vpp/vnet/configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'vpp/vnet/configure.ac') diff --git a/vpp/vnet/configure.ac b/vpp/vnet/configure.ac index 6a5281b0..b6a13d67 100644 --- a/vpp/vnet/configure.ac +++ b/vpp/vnet/configure.ac @@ -27,6 +27,11 @@ AC_ARG_WITH(ipv6sr, [with_ipv6sr=0], [with_ipv6sr=1]) +AC_ARG_WITH(odplib, + AC_HELP_STRING([--with-odplib],[Use odplib]), + [with_odplib=1], + [with_odplib=0]) + AC_ARG_ENABLE(tests, AC_HELP_STRING([--enable-tests], [Build unit tests]), [enable_tests=1], @@ -44,6 +49,9 @@ AC_SUBST(IPSEC,[-DIPSEC=${with_ipsec}]) AM_CONDITIONAL(WITH_IPV6SR, test "$with_ipv6sr" = "1") AC_SUBST(IPV6SR,[-DIPV6SR=${with_ipv6sr}]) +AM_CONDITIONAL(WITH_ODPLIB, test "$with_odplib" = "1") +AC_SUBST(ODPLIB,[-DODPLIB=${with_odplib}]) + AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "1") AC_OUTPUT([Makefile]) -- cgit 1.2.3-korg