diff options
author | Chris Toshok <toshok@src.gnome.org> | 2000-05-07 05:36:27 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-05-07 05:36:27 +0800 |
commit | 35e0a09b15b04e454e5faef81670155282cee0a7 (patch) | |
tree | 4d0cffa09334b87fed4c10ff2550b98f19fba97f /configure.in | |
parent | 989f36ec0e0a0a835c30d521ffe77d70dd7fa321 (diff) | |
download | gsoc2013-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.in | 5 |
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, |