From d535a2bec89293c9f576c0c4f34219c4f3a736be Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Sun, 26 Jun 2011 22:30:36 +0000 Subject: [PATCH] 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. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42326 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile b/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile index 6508525cf6..6d4c848a93 100644 --- a/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile +++ b/src/add-ons/mail_daemon/inbound_protocols/imap/Jamfile @@ -29,6 +29,13 @@ local sources = IMAPStorage.cpp ; +if $(HAIKU_OPENSSL_ENABLED) { + SubDirC++Flags -DUSE_SSL ; + SetupFeatureObjectsDir ssl ; +} else { + SetupFeatureObjectsDir no-ssl ; +} + Addon IMAP : $(sources)