[pulseaudio-discuss] [PATCH 2/2] build: Check version of check library, require >= 0.9.10
Peter Meerwald
pmeerw at pmeerw.net
Wed Aug 10 13:22:16 UTC 2016
From: Peter Meerwald <p.meerwald at bct-electronic.com>
tests/core-util-test.c uses ck_assert_int_lt() which was introduced
in check 0.9.10
make this dependency (with --enable-tests) explicit in configure.ac
Signed-off-by: Peter Meerwald-Stadler <pmeerw at pmeerw.net>
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 7fbecab..1bcdda6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -668,11 +668,11 @@ AC_ARG_ENABLE([tests],
AS_HELP_STRING([--disable-tests],[Disable unit tests]))
AS_IF([test "x$enable_tests" != "xno"],
- [PKG_CHECK_MODULES(LIBCHECK, [ check ], HAVE_LIBCHECK=1, HAVE_LIBCHECK=0)],
+ [PKG_CHECK_MODULES(LIBCHECK, [ check >= 0.9.10 ], HAVE_LIBCHECK=1, HAVE_LIBCHECK=0)],
HAVE_LIBCHECK=0)
AS_IF([test "x$enable_tests" = "xyes" && test "x$HAVE_LIBCHECK" = "x0"],
- [AC_MSG_ERROR([*** check library not found])])
+ [AC_MSG_ERROR([*** check library not found or too old])])
AM_CONDITIONAL([HAVE_TESTS], [test "x$HAVE_LIBCHECK" = x1])
--
2.9.2
More information about the pulseaudio-discuss
mailing list