aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-05-25 18:50:50 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-05-25 18:50:50 +0800
commitbafeb3711a90e62857028b2293d9b1653a4bb148 (patch)
tree9667a41269cc8a0681ed6385ec80959b6986b6d2
parent535912e31198bd1de42f736c8631d15e49d71f49 (diff)
downloadgsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar
gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar.gz
gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar.bz2
gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar.lz
gsoc2013-evolution-bafeb3711a90e62857028b2293d9b1653a4bb148.tar.xz
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
-rw-r--r--ChangeLog4
-rw-r--r--configure.in10
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e561d44262..9dd2377f38 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-05-25 Not Zed <NotZed@Ximian.com>
+
+ * configure.in: if --enable-mono, then enable the mono plugin.
+
2005-05-23 Vivek Jain <jvivek@novell.com>
* configure.in : Removed the entries of
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