diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2012-12-16 18:05:32 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2012-12-17 16:36:33 -0500 |
commit | 5e45a00b8f67281b2977c41625ed57a4caa7d341 (patch) | |
tree | 9a7e89ae1f82022c98de4bec748a04a40832c316 | |
parent | c1c2d76ba9ec33fd94a06ba8c698d21bf4e1b774 (diff) | |
download | dimension-5e45a00b8f67281b2977c41625ed57a4caa7d341.tar.xz |
Use the unit-testing framework "Check"
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0ef84d7..1141ac8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -dnl Copyright (C) 2009-2011 Tavian Barnes <tavianator@tavianator.com> +dnl Copyright (C) 2009-2012 Tavian Barnes <tavianator@tavianator.com> dnl dnl This file is part of The Dimension Build Suite. dnl @@ -101,6 +101,10 @@ PKG_CHECK_MODULES([libsandglass], [libsandglass >= 0.2], AC_SUBST(libsandglass_CFLAGS) AC_SUBST(libsandglass_LIBS) +PKG_CHECK_MODULES([CHECK], [check >= 0.9.4], + [], + [AC_MSG_WARN([check not found - test suite will not work])]) + dnl Platform feature tests m4_include(ax_pthread.m4) |