diff options
author | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2007-07-31 05:14:27 +0800 |
---|---|---|
committer | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2007-07-31 05:14:27 +0800 |
commit | aa20631899e84db54cede78a2ec9ebd339974e19 (patch) | |
tree | 3be53c071685fad22f80495bbc98f724dd99a89e | |
parent | 1950847c484e1c75789e6822a84c1a12f9aae28a (diff) | |
download | gsoc2013-evolution-aa20631899e84db54cede78a2ec9ebd339974e19.tar.gz gsoc2013-evolution-aa20631899e84db54cede78a2ec9ebd339974e19.tar.zst gsoc2013-evolution-aa20631899e84db54cede78a2ec9ebd339974e19.zip |
tnef-attachment plugin check in configure should not use variable string
* tnef-attachment plugin check in configure should not use variable
* string in $all_plugins_experimental
svn path=/trunk/; revision=33911
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-07-30 Veerapuram Varadhan <vvaradhan@novell.com> + + * configure.in: Fix build break due to tnef-attachment plugin + check - Do not use variable in $all_plugins_experimental. + 2007-07-30 Chenthill Palanisamy <pchenthill@novell.com> * configure.in: Fixed a build break due totypo error diff --git a/configure.in b/configure.in index 95793031b8..6dda1643d9 100644 --- a/configure.in +++ b/configure.in @@ -1592,7 +1592,7 @@ all_plugins_standard="$plugins_standard" plugins_experimental_always="backup-restore folder-unsubscribe mail-to-meeting mail-remote save-attachments" plugins_experimental="$plugins_experimental_always $IPOD_SYNC $TNEF_ATTACHMENTS" -all_plugins_experimental="$plugins_experimental_always ipod-sync $TNEF_ATTACHMENTS" +all_plugins_experimental="$plugins_experimental_always ipod-sync tnef-attachments" case x"$enable_plugins" in xno) |