X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=vppinfra%2Fconfigure.ac;h=88939383057d1e668870fa4ce3138043be6fbd03;hb=3fa0af596056ae6e87692325c7ebe51636635313;hp=d0b3a0c0dd29914fcd3124da5b1f374ba18f887c;hpb=cb9cadad578297ffd78fa8a33670bdf1ab669e7e;p=vpp.git diff --git a/vppinfra/configure.ac b/vppinfra/configure.ac index d0b3a0c0dd2..88939383057 100644 --- a/vppinfra/configure.ac +++ b/vppinfra/configure.ac @@ -5,7 +5,7 @@ AC_CONFIG_HEADERS(config/config.h) AC_CANONICAL_BUILD AC_CANONICAL_HOST AM_INIT_AUTOMAKE([gnu no-dist-gzip dist-bzip2]) -AM_SILENT_RULES +AM_SILENT_RULES([yes]) # Checks for programs. AC_PROG_CC @@ -31,6 +31,13 @@ AC_ARG_WITH(ldflags, ###################################################################### +AC_ARG_ENABLE(tests, + AC_HELP_STRING([--enable-tests],[Enable unit tests]), + [enable_tests=1], + [enable_tests=0]) + +AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "1") + AC_ARG_WITH(unix, AC_HELP_STRING([--with-unix],[Compile unix version of clib]), [], @@ -41,14 +48,5 @@ AC_ARG_WITH(unix, AM_CONDITIONAL(WITH_UNIX, test "$with_unix" = "yes") - -## Enable 64-bit vector lengths -AC_ARG_WITH(vec64, - AC_HELP_STRING([--with-vec64],[Enable 64-bit vector lengths]), - [with_vec64=1], - [with_vec64=0]) - -AC_SUBST(VEC64,[-DCLIB_VEC64=${with_vec64}]) - AC_CONFIG_FILES([Makefile]) AC_OUTPUT