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
This commit is contained in:
Michael Lotz
2011-06-26 22:30:36 +00:00
parent 7f4deb4400
commit d535a2bec8
@@ -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)