evolution-data-server r9243 - in trunk: . camel camel/providers



Author: mbarnes
Date: Thu Jul 31 17:03:13 2008
New Revision: 9243
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=9243&view=rev

Log:
2008-07-31  Matthew Barnes  <mbarnes redhat com>

	** Fixes part of bug #545558

	* configure.in:
	Add an --enable-hula configure option for building the Hula
        Camel provider, disabled by default.

	* camel/providers/Makefile.am:
	Disable the Hula provider unless --enable-hula was given at
	configure-time.



Modified:
   trunk/ChangeLog
   trunk/camel/ChangeLog
   trunk/camel/providers/Makefile.am
   trunk/configure.in

Modified: trunk/camel/providers/Makefile.am
==============================================================================
--- trunk/camel/providers/Makefile.am	(original)
+++ trunk/camel/providers/Makefile.am	Thu Jul 31 17:03:13 2008
@@ -4,6 +4,10 @@
 NNTP_DIR=nntp
 endif
 
+if ENABLE_HULA
+HULA_DIR=hula
+endif
+
 if ENABLE_IMAPP
 IMAPP_DIR=imapp
 endif
@@ -17,6 +21,6 @@
 SENDMAIL_DIR=sendmail
 endif
 
-SUBDIRS = pop3 $(SENDMAIL_DIR) smtp imap $(IMAP4_DIR) $(NNTP_DIR) local $(IMAPP_DIR) groupwise hula
+SUBDIRS = pop3 $(SENDMAIL_DIR) smtp imap $(IMAP4_DIR) $(NNTP_DIR) local $(IMAPP_DIR) groupwise $(HULA_DIR)
 
 

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Thu Jul 31 17:03:13 2008
@@ -1046,6 +1046,22 @@
          msg_imap4=no 	 
 fi 	 
 AM_CONDITIONAL(ENABLE_IMAP4, test x$enable_imap4 = xyes)
+
+dnl **************************************************
+dnl Hula support
+dnl **************************************************
+AC_ARG_ENABLE(hula,
+  AC_HELP_STRING( [--enable-hula=@<:@no/yes@:>@],
+                  [Enable support for the now-defunct Hula project]),
+  ,enable_hula=no)
+
+if test "x$enable_hula" = "xyes"; then
+        AC_DEFINE(ENABLE_HULA,1,[Build Hula backend])
+        msg_hula=yes
+else
+        msg_hula=no
+fi
+AM_CONDITIONAL(ENABLE_HULA, test x$enable_hula = xyes)
  
 dnl **************************************************
 dnl * File locking
@@ -1765,6 +1781,10 @@
 echo "\
 	NNTP support:     $msg_nntp"
 fi
+if test "$msg_hula" = "yes"; then
+echo "\
+	Hula support:     $msg_hula"
+fi
 echo "\
 	Kerberos 4/5:     $msg_krb4/$msg_krb5
 	Gnome Keyring:    $enable_gnome_keyring/$with_gnome_keyring



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]