From 60edcdb16583ac321bfda6381ebe22c86de2dcfb Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Fri, 5 May 2017 12:30:19 -0700 Subject: [PATCH] Revert "don't be as picky about check" This reverts commit aa4f9e30583f87db2dd43834ba9948e38976b6e7. The oldest version of libcheck that supports TAP output is 0.9.12, so we need to use >= 0.9.12. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 713dc5e..c00bc11 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_PROG_LN_S AC_PROG_MAKE_SET # Checks for libraries. -PKG_CHECK_MODULES([CHECK], [check >= 0.9.10]) +PKG_CHECK_MODULES([CHECK], [check >= 0.9.12]) PKG_CHECK_MODULES([CURL], [libcurl]) PKG_CHECK_MODULES([GLIB], [glib-2.0]) AC_CHECK_LIB([elf], [elf_begin], [have_elflib=yes], [AC_MSG_ERROR([Unable to find libelf from elfutils])])