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 --- vpp/configure.ac | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vpp/configure.ac (limited to 'vpp/configure.ac') diff --git a/vpp/configure.ac b/vpp/configure.ac new file mode 100644 index 00000000..673ff5ae --- /dev/null +++ b/vpp/configure.ac @@ -0,0 +1,33 @@ +AC_INIT(vpe, 1.1) +AM_INIT_AUTOMAKE +AM_SILENT_RULES + +AC_PROG_LIBTOOL +AM_PROG_AS +AC_PROG_CC +AM_PROG_CC_C_O + +AC_ARG_WITH(q-plugin-prefix, + AC_HELP_STRING([--with-q-plugin-prefix],[vlib plugin prefix]), + [case $with_q_plugin_prefix in + *) ;; + esac]) + +AC_ARG_WITH(q-platform, + AC_HELP_STRING([--with-q-platform],[Build version for given platform (qnative)]), + [case $with_q_platform in + qnative) ;; + *) with_q_platform=qnative;; + esac]) + +AC_ARG_WITH(dpdk, + AC_HELP_STRING([--with-dpdk],[Use the Intel dpdk]), + [with_dpdk=1], + [with_dpdk=0]) + +AM_CONDITIONAL(WITH_DPDK, test "$with_dpdk" = "1") +AC_SUBST(Q_PLATFORM_DEFINE,[-DQ_PLATFORM_${with_q_platform}]) +AC_SUBST(Q_PLATFORM_PLUGPATH,[-DQ_PLUGIN_PREFIX=${with_q_plugin_prefix}]) +AC_SUBST(DPDK,[-DDPDK=${with_dpdk}]) + +AC_OUTPUT([Makefile]) -- cgit 1.2.3-korg