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 | |
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
-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, |