From c8df9e724e9a2559d551fa93f13afe7084b6af3f Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Thu, 6 Aug 2015 13:44:16 -0400 Subject: [PATCH] add a note about which version of cunit is fixed for debian/ubuntu Signed-off-by: Alex Deucher --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 41bf039e..81e0f80d 100644 --- a/configure.ac +++ b/configure.ac @@ -363,6 +363,7 @@ fi PKG_CHECK_MODULES([CUNIT], [cunit >= 2.1], [have_cunit=yes], [have_cunit=no]) # If pkg-config does not find cunit, check it using AC_CHECK_LIB. We # do this because Debian (Ubuntu) lacks pkg-config file for cunit. +# fixed in 2.1-2.dfsg-3: http://anonscm.debian.org/cgit/collab-maint/cunit.git/commit/?h=debian if test "x${have_cunit}" = "xno"; then AC_CHECK_LIB([cunit], [CU_initialize_registry], [have_cunit=yes], [have_cunit=no]) if test "x${have_cunit}" = "xyes"; then