diff options
author | Not Zed <NotZed@Ximian.com> | 2005-05-25 18:50:50 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-05-25 18:50:50 +0800 |
commit | bafeb3711a90e62857028b2293d9b1653a4bb148 (patch) | |
tree | 9667a41269cc8a0681ed6385ec80959b6986b6d2 /configure.in | |
parent | 535912e31198bd1de42f736c8631d15e49d71f49 (diff) | |
download | gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar.gz gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar.zst gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.zip |
if --enable-mono, then enable the mono plugin.
2005-05-25 Not Zed <NotZed@Ximian.com>
* configure.in: if --enable-mono, then enable the mono plugin.
svn path=/trunk/; revision=29410
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in index e13b6863a4..775abaf2b3 100644 --- a/configure.in +++ b/configure.in @@ -688,7 +688,8 @@ AC_SUBST(KRB4_CFLAGS) AC_SUBST(KRB4_LDFLAGS) dnl Mono hooks - +dnl This should just define mono CFLAGS etc here, it is used later to +dnl turn on the mono plugin or not. AC_ARG_ENABLE(mono, [ --enable-mono=[yes,no] Add Mono embedded hooks.], enable_mono="$enableval", enable_mono="no") @@ -696,7 +697,6 @@ if test "x${enable_mono}" = "xyes"; then AC_DEFINE(ENABLE_MONO,1,[Define if Mono embedding should be enabled]) mono_package="mono" fi -AM_CONDITIONAL(ENABLE_MONO, test x$enable_mono = xyes) dnl ******************************************************************************** dnl security extension support (SSL and S/MIME) @@ -1380,6 +1380,11 @@ x | xyes) ;; esac +if test "x${enable_mono}" = "xyes"; then + plugins_enabled="$plugins_enabled mono" + msg_plugins="$msg_plugins (and mono)" +fi + AC_SUBST(plugins_enabled) AC_SUBST(plugins_base) AC_SUBST(plugins_standard) @@ -1593,6 +1598,7 @@ plugins/audio-inline/Makefile plugins/mail-to-meeting/Makefile plugins/mail-to-task/Makefile plugins/mail-remote/Makefile +plugins/mono/Makefile plugins/new-mail-notify/Makefile plugins/subject-thread/Makefile plugins/save-attachments/Makefile |