diff options
author | Tor Lillqvist <tml@novell.com> | 2005-07-13 07:39:54 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-07-13 07:39:54 +0800 |
commit | c409f1ca7f6c441f06b8b5fe901248877e435710 (patch) | |
tree | e7a55e88fac17e309aa4b5a93d3dac08a69bc0dc | |
parent | 4446b93079ac33e9e34fe102e3027c408103ee99 (diff) | |
download | gsoc2013-evolution-c409f1ca7f6c441f06b8b5fe901248877e435710.tar.gz gsoc2013-evolution-c409f1ca7f6c441f06b8b5fe901248877e435710.tar.zst gsoc2013-evolution-c409f1ca7f6c441f06b8b5fe901248877e435710.zip |
Don't attempt to build the sa-junk-plugin on Win32, it's very
2005-07-13 Tor Lillqvist <tml@novell.com>
* configure.in: Don't attempt to build the sa-junk-plugin on
Win32, it's very Unix-specific.
svn path=/trunk/; revision=29746
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2005-07-13 Tor Lillqvist <tml@novell.com> + * configure.in: Don't attempt to build the sa-junk-plugin on + Win32, it's very Unix-specific. + * win32/libevolution-mail.def: Add more entries. 2005-07-12 Harish Krishnaswamy <kharish@novell.com> diff --git a/configure.in b/configure.in index be4cf409fb..831bf5fec2 100644 --- a/configure.in +++ b/configure.in @@ -99,11 +99,13 @@ case "$host" in os_win32=yes NO_UNDEFINED='-no-undefined' SOEXT='.dll' + SA_JUNK_PLUGIN='' ;; *) os_win32=no NO_UNDEFINED='' SOCKET_LIBS='' SOEXT='.so' + SA_JUNK_PLUGIN=sa-junk-plugin ;; esac AC_MSG_RESULT([$os_win32]) @@ -1410,7 +1412,7 @@ AC_SUBST_FILE(EVO_PLUGIN_RULE) AC_ARG_ENABLE(plugins, [ --enable-plugins=[no/base/all/experimental/list] Enable plugins.],enable_plugins="$enableval",enable_plugins=all) 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 groupwise-account-setup mail-account-disable proxy proxy-login sa-junk-plugin $EXCHANGE_PLUGIN $MONO_PLUGIN" +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 groupwise-account-setup mail-account-disable proxy proxy-login $SA_JUNK_PLUGIN $EXCHANGE_PLUGIN $MONO_PLUGIN" plugins_standard="bbdb subject-thread save-calendar select-one-source copy-tool mail-to-task mark-calendar-offline audio-inline mailing-list-actions new-mail-notify default-mailer" |