summaryrefslogtreecommitdiff
path: root/include/makeinclude/wrapper_macros.GNU
diff options
context:
space:
mode:
authorgthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-21 21:20:09 +0000
committergthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-21 21:20:09 +0000
commit348e692227ea8f5c4ee88d5a2c4aa319c41df31d (patch)
treea664517661b40b9334735322b68aca519a9d6b78 /include/makeinclude/wrapper_macros.GNU
parent16ce7976b81fd8d319cafc61853343f1a4477619 (diff)
downloadATCD-348e692227ea8f5c4ee88d5a2c4aa319c41df31d.tar.gz
*** empty log message ***
Diffstat (limited to 'include/makeinclude/wrapper_macros.GNU')
-rw-r--r--include/makeinclude/wrapper_macros.GNU14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index 46c89b04753..12754831195 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -59,6 +59,10 @@
# an application that is linked with ACE to extract _exactly_ what it
# needs from the library, resulting in a smaller executable.
# Setting this to 1 overrides debug to 0.
+# sctp Build support for TAO SCIOP and for ACE SCTP
+# wrapper-facades. The sctp macro should be set to a string
+# value representing a particular SCTP implementation.
+# Recognized values include: openss7
#
# Usually, users do not need to be concerned with make targets.
# Just enter "make" on the command line to build. A few notable
@@ -120,6 +124,9 @@
# PLATFORM_RAPI_CPPFLAGS Platform CPP options for RAPI
# PLATFORM_RAPI_LDFLAGS Platform LD options for RAPI
# PLATFORM_RAPI_LIBS Platform libraries required with RAPI
+# PLATFORM_SCTP_CPPFLAGS Platform CPP options required for SCTP
+# PLATFORM_SCTP_LDFLAGS Platform LD options required for SCTP
+# PLATFORM_SCTP_LIBS Platform libraries required for SCTP
# PRELINK Executable to precede linking, such as quantify
# PURELINK If set, contains purify executable as well as all options
# PURE_CACHE_BASE_DIR
@@ -453,6 +460,13 @@ ifneq ($(rapi),)
LDFLAGS += $(PLATFORM_RAPI_LDFLAGS)
endif # rapi
+# if any sctp implementation is present then add
+ifneq ($(sctp),)
+ CPPFLAGS += -DACE_HAS_SCTP $(PLATFORM_SCTP_CPPFLAGS)
+ LDFLAGS += $(PLATFORM_SCTP_LDFLAGS)
+ LIBS += $(PLATFORM_SCTP_LIBS)
+endif
+
ifeq ($(ace_with_gl),0)
override ace_with_gl =
endif # ace_with_gl