diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2000-05-06 Chris Toshok <toshok@helixcode.com> + + * configure.in: check for purify. + 2000-05-06 Christopher James Lahey <clahey@helixcode.com> * 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, |