diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-11-01 20:38:23 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-11-01 20:40:23 +0100 |
commit | a4bfdce8ed87d728f5644077ddbe94380c6ff3b5 (patch) | |
tree | bba77eaf4f818bbc3bced6f9ddda87cecd70f83d /configure.ac | |
parent | 4f5b8a1d0f927b911dadeb7a0980c38b72201c76 (diff) |
Switch from cppunit.m4 to pkgconfig (patch from Jin^Eld)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7e6695c..0dcf8c0 100644 --- a/configure.ac +++ b/configure.ac @@ -142,10 +142,17 @@ AC_ARG_WITH([test], AS_HELP_STRING([--with-test], [Build unit tests])) AS_IF([test x$with_test == xyes], - [AC_MSG_WARN([*** Building unittests!]) - AM_PATH_CPPUNIT(1.9.6)] + [ + AC_MSG_WARN([*** Building unittests!]) + PKG_CHECK_MODULES([CPPUNIT], [ cppunit >= 1.9.6 ], [], + [ + AC_MSG_ERROR([$CPPUNIT_PKG_ERRORS]) + ]) + ] ) +AM_CONDITIONAL([ENABLE_TESTS], [test "x$with_test" = "xyes"]) + dnl ====================== dnl Compile LV2 plugin dnl ====================== |