[Galago-commits] r2748 - releases/galago-daemon/0.5.0

galago-commits at freedesktop.org galago-commits at freedesktop.org
Thu Apr 20 17:51:36 PDT 2006


Author: chipx86
Date: 2006-04-20 17:51:34 -0700 (Thu, 20 Apr 2006)
New Revision: 2748

Modified:
   releases/galago-daemon/0.5.0/ChangeLog
   releases/galago-daemon/0.5.0/configure.ac
Log:
Fix the test for libcheck so that you can pass configure without requiring libcheck installed. (Merge from r2746).


Modified: releases/galago-daemon/0.5.0/ChangeLog
===================================================================
--- releases/galago-daemon/0.5.0/ChangeLog	2006-04-21 00:50:40 UTC (rev 2747)
+++ releases/galago-daemon/0.5.0/ChangeLog	2006-04-21 00:51:34 UTC (rev 2748)
@@ -1,5 +1,11 @@
 ==================== 0.5.0 ====================
 
+Thu Apr 20 17:47:40 PDT 2006  Christian Hammond <chipx86 at chipx86.com>
+
+	* configure.ac:
+	  - Fix the test for libcheck so that you can pass configure without
+	    requiring libcheck installed.
+
 Thu Apr 20 00:40:59 PDT 2006  Christian Hammond <chipx86 at chipx86.com>
 
 	* NEWS:

Modified: releases/galago-daemon/0.5.0/configure.ac
===================================================================
--- releases/galago-daemon/0.5.0/configure.ac	2006-04-21 00:50:40 UTC (rev 2747)
+++ releases/galago-daemon/0.5.0/configure.ac	2006-04-21 00:51:34 UTC (rev 2748)
@@ -135,7 +135,7 @@
               [enable_tests=yes])
 
 if test "x$enable_tests" = "xyes" ; then
-   AM_PATH_CHECK(, [have_check="yes"], AC_MSG_ERROR([Check not found]))
+   AM_PATH_CHECK(, [have_check="yes"], [have_check="no"])
 else
    have_check="no"
 fi



More information about the galago-commits mailing list