[haiku-commits] r42326 - haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap

  • From: mmlr@xxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 27 Jun 2011 00:30:37 +0200 (CEST)

Author: mmlr
Date: 2011-06-27 00:30:36 +0200 (Mon, 27 Jun 2011)
New Revision: 42326
Changeset: https://dev.haiku-os.org/changeset/42326

Modified:
   haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile
Log:
While there are USE_SSL checks in the code, provide the corresponding Jamfile
rules. Otherwise the IMAP add-on is always built without SSL support.


Modified: haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile
===================================================================
--- haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile  
2011-06-26 19:38:26 UTC (rev 42325)
+++ haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile  
2011-06-26 22:30:36 UTC (rev 42326)
@@ -29,6 +29,13 @@
        IMAPStorage.cpp
 ;
 
+if $(HAIKU_OPENSSL_ENABLED) {
+       SubDirC++Flags -DUSE_SSL ;
+       SetupFeatureObjectsDir ssl ;
+} else {
+       SetupFeatureObjectsDir no-ssl ;
+}
+
 Addon IMAP
        :
        $(sources)


Other related posts:

  • » [haiku-commits] r42326 - haiku/trunk/src/add-ons/mail_daemon/inbound_protocols/imap - mmlr