From cb9cadad578297ffd78fa8a33670bdf1ab669e7e Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Tue, 8 Dec 2015 15:45:58 -0700 Subject: Initial commit of vpp code. Change-Id: Ib246f1fbfce93274020ee93ce461e3d8bd8b9f17 Signed-off-by: Ed Warnicke --- vlib/configure.ac | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 vlib/configure.ac (limited to 'vlib/configure.ac') diff --git a/vlib/configure.ac b/vlib/configure.ac new file mode 100644 index 00000000..4fdcff12 --- /dev/null +++ b/vlib/configure.ac @@ -0,0 +1,26 @@ +AC_INIT(vlib, 1.1) +AM_INIT_AUTOMAKE +AM_SILENT_RULES + +AC_PROG_CC +AM_PROG_CC_C_O +AC_PROG_LIBTOOL + +AC_ARG_WITH(dpdk, + AC_HELP_STRING([--with-dpdk],[Use the Intel dpdk]), + [with_dpdk=1], + [with_dpdk=0]) + +AC_ARG_WITH(pre-data, + AC_HELP_STRING([--with-pre-data],[Set buffer rewrite space]), + [case $with_pre_data in + 128) ;; + 256) ;; + *) with_pre_data="pre-data-not-set" ;; + esac], [with_pre_data=128]) + +AM_CONDITIONAL(WITH_DPDK, test "$with_dpdk" = "1") +AC_SUBST(DPDK,[-DDPDK=${with_dpdk}]) +AC_SUBST(PRE_DATA_SIZE,[$with_pre_data]) + +AC_OUTPUT([Makefile]) -- cgit 1.2.3-korg