aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt McCutchen <matt@mattmccutchen.net>2009-09-13 11:56:36 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-13 11:56:36 +0800
commitb62c18bd6b91a9f7f71b018f82441bb30cc5fc57 (patch)
treeab6568d3ee08a17d226414724c72919e4ff68f10
parente841a0b22395bae0097f89a208c8b5309f77166b (diff)
downloadgsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.tar
gsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.tar.gz
gsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.tar.bz2
gsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.tar.lz
gsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.tar.xz
gsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.tar.zst
gsoc2013-evolution-b62c18bd6b91a9f7f71b018f82441bb30cc5fc57.zip
Bug 594468 - Revise kill-bonobo hack for non-working plugins
-rw-r--r--configure.ac19
1 files changed, 10 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 1382b63af2..964f27ebf1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1772,15 +1772,6 @@ plugins_experimental_always="face external-editor hula-account-setup"
plugins_experimental="$plugins_experimental_always $IPOD_SYNC $TNEF_ATTACHMENTS"
all_plugins_experimental="$plugins_experimental_always ipod-sync tnef-attachments"
-dnl Temporary KILL-BONOBO hack
-enable_plugins="attachment-reminder addressbook-file audio-inline backup-restore bbdb bogo-junk-plugin caldav calendar-file calendar-http calendar-weather default-mailer default-source email-custom-header external-editor face google-account-setup hula-account-setup imap-features itip-formatter mailing-list-actions mail-notification mail-to-task mark-all-read plugin-manager prefer-plain profiler pst-import publish-calendar sa-junk-plugin save-calendar startup-wizard subject-thread templates $TNEF_ATTACHMENTS vcard-inline webdav-account-setup"
-
-dnl PLUGINS NOT BUILDING YET
-dnl ------------------------
-dnl exchange-operations
-dnl groupwise-features
-dnl ipod-sync
-
case x"$enable_plugins" in
xno)
plugins_enabled=""
@@ -1804,6 +1795,16 @@ xexperimental)
;;
esac
+dnl Temporary KILL-BONOBO hack
+for broken_plugin in exchange-operations groupwise-features ipod-sync
+do
+ if echo ${plugins_enabled} | grep "$broken_plugin" > /dev/null
+ then
+ plugins_enabled=`echo $plugins_enabled | sed -e "s/$broken_plugin//g"`
+ echo "warning: plugin $broken_plugin is broken with kill-bonobo changes, disabling it."
+ fi
+done
+
dnl ******************************
dnl Profiling support
dnl ******************************