From: Paul Brossier Date: Tue, 10 Jul 2012 22:31:10 +0000 (-0700) Subject: configure.ac: enable tests by default, add m4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4db0752a47ef82b8cf30655c4c270c2bd312f0cd;p=aubio.git configure.ac: enable tests by default, add m4 --- diff --git a/configure.ac b/configure.ac index 1df71e4e..42321727 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,8 @@ dnl Process this file with autoconf to produce a configure script dnl Init autoconf AC_INIT(src/aubio.h) +AC_CONFIG_MACRO_DIR([m4]) + dnl Package name and version PACKAGE=aubio . $srcdir/VERSION @@ -242,9 +244,9 @@ fi dnl Enable unit tests AC_ARG_ENABLE(testprogs, - AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]), + AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=yes]]]), [with_testprogs=$enableval], - with_testprogs="no") + with_testprogs="yes") AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no") AC_SUBST(AUBIO_CFLAGS)