aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-05-07 05:36:27 +0800
committerChris Toshok <toshok@src.gnome.org>2000-05-07 05:36:27 +0800
commit35e0a09b15b04e454e5faef81670155282cee0a7 (patch)
tree4d0cffa09334b87fed4c10ff2550b98f19fba97f /configure.in
parent989f36ec0e0a0a835c30d521ffe77d70dd7fa321 (diff)
downloadgsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.tar
gsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.tar.gz
gsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.tar.bz2
gsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.tar.lz
gsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.tar.xz
gsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.tar.zst
gsoc2013-evolution-35e0a09b15b04e454e5faef81670155282cee0a7.zip
check for purify.
* configure.in: check for purify. svn path=/trunk/; revision=2840
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
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,