From 35e0a09b15b04e454e5faef81670155282cee0a7 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Sat, 6 May 2000 21:36:27 +0000 Subject: check for purify. * configure.in: check for purify. svn path=/trunk/; revision=2840 --- ChangeLog | 4 ++++ configure.in | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc76428ec1..fa059e15d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-05-06 Chris Toshok + + * configure.in: check for purify. + 2000-05-06 Christopher James Lahey * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Added a diff --git a/configure.in b/configure.in index c0c9d70df1..081a8529d6 100644 --- a/configure.in +++ b/configure.in @@ -59,8 +59,9 @@ dnl Purify support AC_ARG_ENABLE(purify, [ --enable-purify=[no/yes] Enable support for building executables with Purify.],,enable_purify=no) - -AM_CONDITIONAL(ENABLE_PURIFY, test "x$enable_purify" = "xyes") +AC_PATH_PROG(PURIFY, purify, impure) +AC_SUBST(PURIFY) +AM_CONDITIONAL(ENABLE_PURIFY, test "x$enable_purify" = "xyes" -a "x$purify" != "ximpure") dnl * Time zone stuff AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone, -- cgit v1.2.3