Fix usage of obsolete HAIKU_BUILD_FEATURE_OPENSSL_ENABLED

This commit is contained in:
Ingo Weinhold
2013-08-05 00:25:30 +02:00
parent d31a50eef7
commit 57190167ef
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ if ! $(HAIKU_BOOTSTRAP_BUILD) {
} }
# If enabled, make sure that OpenSSL is added to the image. # If enabled, make sure that OpenSSL is added to the image.
if $(HAIKU_BUILD_FEATURE_OPENSSL_ENABLED) { if [ FIsBuildFeatureEnabled openssl ] {
AddHaikuImagePackages openssl ; AddHaikuImagePackages openssl ;
} }
@@ -31,7 +31,7 @@ local sources =
AddResources IMAP : IMAP.rdef ; AddResources IMAP : IMAP.rdef ;
if $(HAIKU_BUILD_FEATURE_OPENSSL_ENABLED) { if [ FIsBuildFeatureEnabled openssl ] {
SubDirC++Flags -DUSE_SSL ; SubDirC++Flags -DUSE_SSL ;
SetupFeatureObjectsDir ssl ; SetupFeatureObjectsDir ssl ;
} else { } else {