configure.ac: enable tests by default, add m4
authorPaul Brossier <piem@piem.org>
Tue, 10 Jul 2012 22:31:10 +0000 (15:31 -0700)
committerPaul Brossier <piem@piem.org>
Tue, 10 Jul 2012 22:31:10 +0000 (15:31 -0700)
configure.ac

index 1df71e4efc7903a0f5b0a6157f08474dc374517a..42321727e9cf552998fbe65766b0ff1da516995d 100644 (file)
@@ -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)