vpp/vlib/configure.ac
Damjan Marion 6b1d7c55d6 Make automake silent rules default
Change-Id: Ia504ccdac1deac20f20cf7fb76f78b2d8c505474
Signed-off-by: Damjan Marion <damarion@cisco.com>
2016-04-26 19:36:59 +00:00

27 lines
630 B
Plaintext

AC_INIT(vlib, 1.1)
LT_INIT
AM_INIT_AUTOMAKE
AM_SILENT_RULES([yes])
AC_PROG_CC
AM_PROG_CC_C_O
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])