diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-06 00:36:34 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-06 00:36:34 +0800 |
commit | fa930495340a95608acc32a0b609133550245b90 (patch) | |
tree | 79fe8eb32f8d8ef98236e9bda06cbe6c2aea2eb9 | |
parent | a73a16c8f8ad288c7bac52c33fd73fc64f4623c1 (diff) | |
download | gsoc2013-evolution-fa930495340a95608acc32a0b609133550245b90.tar.gz gsoc2013-evolution-fa930495340a95608acc32a0b609133550245b90.tar.zst gsoc2013-evolution-fa930495340a95608acc32a0b609133550245b90.zip |
Added option `--enable-purify' and correspondent Automake conditional.
svn path=/trunk/; revision=2817
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 12 insertions, 0 deletions
@@ -1,4 +1,9 @@ +2000-05-05 Ettore Perazzoli <ettore@helixcode.com> + + * Added `--enable-purify' flag. + 2000-05-05 Chris Toshok <toshok@helixcode.com> + * shell/Makefile.am: add support for building purified evolution. * shell/.cvsignore: ignore evolution.pure diff --git a/configure.in b/configure.in index 6fdb04d54c..c0c9d70df1 100644 --- a/configure.in +++ b/configure.in @@ -55,6 +55,13 @@ AM_GNOME_GETTEXT GNOME_X_CHECKS +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") + dnl * Time zone stuff AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone, AC_TRY_COMPILE([ |