summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude/wrapper_macros.GNU
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-11-02 09:14:22 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-11-02 09:14:22 +0100
commit097e1e7f880b2e9f55a5cf557f373a44035e0b93 (patch)
tree0f272881cdb19b44f6157f16035681e601d6792d /ACE/include/makeinclude/wrapper_macros.GNU
parent6d9ac6c81aaf00b0ff733c72068ab5671a998e48 (diff)
downloadATCD-097e1e7f880b2e9f55a5cf557f373a44035e0b93.tar.gz
Use SSL_INCDIR and SSL_LIBDIR as they are now generated by MPC
Diffstat (limited to 'ACE/include/makeinclude/wrapper_macros.GNU')
-rw-r--r--ACE/include/makeinclude/wrapper_macros.GNU12
1 files changed, 10 insertions, 2 deletions
diff --git a/ACE/include/makeinclude/wrapper_macros.GNU b/ACE/include/makeinclude/wrapper_macros.GNU
index 9d2a25292cd..8627695fccd 100644
--- a/ACE/include/makeinclude/wrapper_macros.GNU
+++ b/ACE/include/makeinclude/wrapper_macros.GNU
@@ -677,8 +677,16 @@ ifeq ($(ssl),0)
else
ifneq ($(SSL_ROOT), /usr)
ifneq ($(SSL_ROOT),)
- PLATFORM_SSL_CPPFLAGS += -I$(SSL_ROOT)/include
- PLATFORM_SSL_LDFLAGS += -L$(SSL_ROOT)/lib
+ ifneq ($(SSL_INCDIR),)
+ PLATFORM_SSL_CPPFLAGS += -I$(SSL_INCDIR)
+ else
+ PLATFORM_SSL_CPPFLAGS += -I$(SSL_ROOT)/include
+ endif
+ ifneq ($(SSL_LIBDIR),)
+ PLATFORM_SSL_LDFLAGS += -L$(SSL_LIBDIR)
+ else
+ PLATFORM_SSL_LDFLAGS += -L$(SSL_ROOT)/lib
+ endif
endif
endif
PLATFORM_SSL_LIBS ?= -lssl -lcrypto