Revision
118
Author
robert@fledge.watson.org
Date
2009-11-04 01:12:26 -0800 (Wed, 04 Nov 2009)

Log Message

Use AC_PATH_PROG() for leaks detection rather than AC_CHECK_TARGET_TOOLS(),
as that apparently didn't do what I thought it did.

Modified Paths

Diff

Modified: trunk/configure.ac (117 => 118)


--- trunk/configure.ac	2009-11-04 00:39:30 UTC (rev 117)
+++ trunk/configure.ac	2009-11-04 09:12:26 UTC (rev 118)
@@ -115,7 +115,7 @@
 AC_PROG_LIBTOOL
 AC_PATH_PROGS(MIG, mig)
 
-AC_CHECK_TARGET_TOOLS(LEAKS, leaks)
+AC_PATH_PROG(LEAKS, leaks)
 AS_IF([test "x$LEAKS" != "x"],
   [AC_DEFINE(HAVE_LEAKS, 1, [Define if Apple leaks program is present])]
 )