VPP-355: add PBB (802.1ah) tag rewrite
[vpp.git] / vnet / configure.ac
1 AC_INIT(vnet, 1.1)
2 AC_CONFIG_AUX_DIR(config)
3 AC_CONFIG_HEADERS(config/config.h)
4 LT_INIT
5 AM_INIT_AUTOMAKE
6 AM_SILENT_RULES([yes])
7
8 AC_PROG_CC
9
10 AC_ARG_WITH(dpdk,
11             AC_HELP_STRING([--with-dpdk],[Use the Intel dpdk]),
12             [with_dpdk=1],
13             [with_dpdk=0])
14
15 AC_ARG_WITH(ipsec,
16             AC_HELP_STRING([--without-ipsec],[Disable ipsec]),
17             [with_ipsec=0],
18             [with_ipsec=1])
19
20 AC_ARG_WITH(ipv6sr,
21             AC_HELP_STRING([--without-ipv6sr],[Disable ipv6sr]),
22             [with_ipv6sr=0],
23             [with_ipv6sr=1])
24
25 AC_ARG_ENABLE(tests,
26               AC_HELP_STRING([--enable-tests], [Build unit tests]),
27               [enable_tests=1],
28               [enable_tests=0])
29
30 AM_CONDITIONAL(WITH_DPDK, test "$with_dpdk" = "1")
31 AC_SUBST(DPDK,[-DDPDK=${with_dpdk}])
32
33 AM_CONDITIONAL(WITH_IPSEC, test "$with_ipsec" = "1")
34 AC_SUBST(IPSEC,[-DIPSEC=${with_ipsec}])
35
36 AM_CONDITIONAL(WITH_IPV6SR, test "$with_ipv6sr" = "1")
37 AC_SUBST(IPV6SR,[-DIPV6SR=${with_ipv6sr}])
38
39 AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "1")
40
41 AC_OUTPUT([Makefile])