summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-06-16 18:05:00 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-06-16 18:15:59 +0200
commit2abc107b24f73b8c4664189c34196d9a27a3e339 (patch)
treeb7067a45f7294dbd143c410bdfb690157c976e3c /configure.ac
parente694a23ab28686ecc0635c2ac8c625e743b89a3b (diff)
Port the rest of the unittests to DGUnit and remove the CppUnit dependency.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index f60493c..456cb74 100644
--- a/configure.ac
+++ b/configure.ac
@@ -207,16 +207,6 @@ dnl ======================
AC_ARG_WITH([test],
AS_HELP_STRING([--with-test], [Build unit tests]))
-AS_IF([test x$with_test == xyes],
- [
- 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 ======================