aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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