# HG changeset patch # User Stu Tomlinson # Date 1207143309 0 # Node ID c3189d5da3bf6d8c52b33e42e9154f47eb761bba # Parent 3bf963b9c715d22fcd5a137a6aad0be716fda163 autoconf started crying at me about "possibly undefined macro: PKG_CHECK_MODULES" this seems to fix it, oddly enough. I don't know if it will still find old versions of check now though. I guess it doesn't matter, it's not like many people actually bother to run "make check". diff -r 3bf963b9c715 -r c3189d5da3bf configure.ac --- a/configure.ac Wed Apr 02 12:29:10 2008 +0000 +++ b/configure.ac Wed Apr 02 13:35:09 2008 +0000 @@ -2135,7 +2135,7 @@ dnl # Check for check dnl ####################################################################### PKG_CHECK_MODULES(CHECK,[check >= 0.9.4],:,[ - ifdef([AM_PATH_CHECK], + ifdef([[AM_PATH_CHECK]], [AM_PATH_CHECK(0.8.2,:,:)], [AC_MSG_RESULT([no, testing is disabled])]) ])