aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-05-16 18:53:38 +0800
committerChris Toshok <toshok@src.gnome.org>2000-05-16 18:53:38 +0800
commit8d248f9b8e22d9d88dc1354da1a83b42e943ab98 (patch)
tree031ff4f6cf2b1a10f16f481b435241ee361e4138
parent1a38235e406fea7d32e9ef3d85ee5cf6c14e3686 (diff)
downloadgsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.tar
gsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.tar.gz
gsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.tar.bz2
gsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.tar.lz
gsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.tar.xz
gsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.tar.zst
gsoc2013-evolution-8d248f9b8e22d9d88dc1354da1a83b42e943ab98.zip
add --with-purify-options support, and default it to what we at helix need
* configure.in: add --with-purify-options support, and default it to what we at helix need svn path=/trunk/; revision=3083
-rw-r--r--ChangeLog5
-rw-r--r--configure.in12
2 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 284c09952e..6b2a44974b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-16 Chris Toshok <toshok@helixcode.com>
+
+ * configure.in: add --with-purify-options support, and default it
+ to what we at helix need
+
Tue May 16 06:11:40 2000 Tuomas Kuosmanen <tigert@gimp.org>
* art/evolution-calendar-mini.png art/evolution-inbox-mini.png
diff --git a/configure.in b/configure.in
index 8c5899093a..b2ab6502e3 100644
--- a/configure.in
+++ b/configure.in
@@ -66,13 +66,23 @@ AM_GNOME_GETTEXT
GNOME_X_CHECKS
+dnl
dnl Purify support
+dnl
AC_ARG_ENABLE(purify,
[ --enable-purify=[no/yes] Enable support for building executables with
Purify.],,enable_purify=no)
AC_PATH_PROG(PURIFY, purify, impure)
+AC_ARG_WITH(purify-options, [ --with-purify-options=OPTIONS Options passed to the purify command line (defaults to PURIFYOPTIONS variable).])
+if test "x$with_purify_options" = "xno"; then
+ with_purify_options="-always-use-cache-dir=yes -cache-dir=/gnome/lib/purify"
+fi
+if test "x$PURIFYOPTIONS" = "x"; then
+ PURIFYOPTIONS=$with_purify_options
+fi
AC_SUBST(PURIFY)
-AM_CONDITIONAL(ENABLE_PURIFY, test "x$enable_purify" = "xyes" -a "x$purify" != "ximpure")
+AM_CONDITIONAL(ENABLE_PURIFY, test "x$enable_purify" = "xyes" -a "x$PURIFY" != "ximpure")
+PURIFY="$PURIFY $PURIFYOPTIONS"
dnl * Time zone stuff
AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,