diff options
-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([ |