summaryrefslogtreecommitdiff
path: root/include/makeinclude/wrapper_macros.GNU
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-06-16 23:27:19 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-06-16 23:27:19 +0000
commitbe39c007acd3dbed99ae246cec29a63e251ce8e3 (patch)
tree98028b7ec52ba174d1ad02cc00e7ff8b43cf3643 /include/makeinclude/wrapper_macros.GNU
parent261236ce4036e29f8bd80fdd8d52c36801e0dab4 (diff)
downloadATCD-be39c007acd3dbed99ae246cec29a63e251ce8e3.tar.gz
ChangeLogTag:Fri Jun 16 16:18:21 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'include/makeinclude/wrapper_macros.GNU')
-rw-r--r--include/makeinclude/wrapper_macros.GNU13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index 8aa0dd5c3f7..9c76d771e60 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -43,6 +43,7 @@
# fl_reactor Build the FlReactor.
# tk_reactor Build the TkReactor.
# qt_reactor Build the QtReactor.
+# ssl Build with OpenSSL support.
# rapi Build with RAPI
#
# Usually, users do not need to be concerned with make targets.
@@ -98,6 +99,9 @@
# PLATFORM_XT_CPPFLAGS Platform CPP options for X11 (some require -I...)
# PLATFORM_XT_LDFLAGS Platform LD options for X11 (some require -L...)
# PLATFORM_XT_LIBS Platform libraries require with X11
+# PLATFORM_SSL_CPPFLAGS Platform CPP options for OpenSSL (may need -I...)
+# PLATFORM_SSL_LDFLAGS Platform LD options for OpenSSL (may need -L...)
+# PLATFORM_SSL_LIBS Platform libraries required with OpenSSL
# PLATFORM_RAPI_CPPFLAGS Platform CPP options for RAPI
# PLATFORM_RAPI_LDFLAGS Platform LD options for RAPI
# PLATFORM_RAPI_LIBS Platform libraries required with RAPI
@@ -377,6 +381,15 @@ ifneq ($(ace_with_x11),)
LDFLAGS += $(PLATFORM_X11_LDFLAGS)
endif # ace_with_x11
+ifeq ($(ssl),0)
+ override ssl =
+endif # ssl
+
+ifneq ($(ssl),)
+ CPPFLAGS += -DACE_HAS_SSL $(PLATFORM_SSL_CPPFLAGS)
+ LIBS += $(PLATFORM_SSL_LIBS)
+ LDFLAGS += $(PLATFORM_SSL_LDFLAGS)
+endif # ssl
ifeq ($(exceptions),)
ifeq ($(ACE_HAS_GNUG_PRE_2_8),0)