aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-06-23 12:19:48 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-06-23 12:19:48 +0800
commit8a2d69e680a30d228fbb4ba0d7472f98b88abb83 (patch)
treee887fb88c057c9634ede3d8cb188587b27643c1d
parent98297fbb8b916425a8ea63671853411e80ced51e (diff)
downloadgsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.tar
gsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.tar.gz
gsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.tar.bz2
gsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.tar.lz
gsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.tar.xz
gsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.tar.zst
gsoc2013-evolution-8a2d69e680a30d228fbb4ba0d7472f98b88abb83.zip
fix the --enable-profiler not to disable otherwise enabled plugins. &
2005-06-23 Not Zed <NotZed@Ximian.com> * configure.in: fix the --enable-profiler not to disable otherwise enabled plugins. & added default-mailer plugin stuff. svn path=/trunk/; revision=29571
-rw-r--r--ChangeLog5
-rw-r--r--configure.in5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 14686a4f0c..ce89310ad2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-23 Not Zed <NotZed@Ximian.com>
+
+ * configure.in: fix the --enable-profiler not to disable otherwise
+ enabled plugins. & added default-mailer plugin stuff.
+
2005-06-18 Tor Lillqvist <tml@novell.com>
* configure.in (EXTRA_GNOME dependencies): Use $FULL_GNOME_DEPS
diff --git a/configure.in b/configure.in
index 3a29df6bee..b1701cb7e4 100644
--- a/configure.in
+++ b/configure.in
@@ -1503,7 +1503,7 @@ AC_ARG_ENABLE(plugins, [ --enable-plugins=[no/base/all/experimental/list]
dnl Add any new plugins here
plugins_base="calendar-file calendar-http calendar-weather itip-formatter plugin-manager default-source addressbook-file startup-wizard print-message mark-all-read groupwise-features $EXCHANGE_PLUGIN mono"
-plugins_standard="bbdb subject-thread save-attachments prefer-plain save-calendar select-one-source copy-tool mail-to-task mark-calendar-offline audio-inline mailing-list-actions new-mail-notify"
+plugins_standard="bbdb subject-thread save-attachments prefer-plain save-calendar select-one-source copy-tool mail-to-task mark-calendar-offline audio-inline mailing-list-actions new-mail-notify default-mailer"
plugins_experimental="backup-restore folder-unsubscribe mail-to-meeting mail-remote"
@@ -1533,7 +1533,7 @@ esac
AC_ARG_ENABLE(profiling, [ --enable-profiling=[no/yes] Enable profiling plugin.],enable_profiling="$enableval",enable_profiling=no)
case x"$enable_profiling" in
x | xyes)
- plugins_enabled="$plugins_base profiler"
+ plugins_enabled="$plugins_enabled profiler"
msg_plugins="$msg_plugins (and profiling)"
AC_DEFINE(ENABLE_PROFILING,1,[Profiling Hooks Enabled])
;;
@@ -1778,6 +1778,7 @@ plugins/itip-formatter/Makefile
plugins/backup-restore/Makefile
plugins/exchange-operations/Makefile
plugins/default-source/Makefile
+plugins/default-mailer/Makefile
plugins/addressbook-file/Makefile
plugins/startup-wizard/Makefile
plugins/print-message/Makefile