diff options
author | smcqueen <smcqueen@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-11 15:27:12 +0000 |
---|---|---|
committer | smcqueen <smcqueen@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-11 15:27:12 +0000 |
commit | 05b6ae5ccbdc962168e9783c8468c6326c462631 (patch) | |
tree | b89d755817447ee1f453f22edcbaba9b0939cdb7 /include/makeinclude | |
parent | 3f3b02ce77ca3b71773fa62ed26fc3f146ab69bc (diff) | |
download | ATCD-05b6ae5ccbdc962168e9783c8468c6326c462631.tar.gz |
ChangeLogTag: Fri Apr 11 16:18:08 2003 Simon McQueen <sm@prismtechnologies.com>
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/platform_linux.GNU | 9 | ||||
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 14 |
2 files changed, 0 insertions, 23 deletions
diff --git a/include/makeinclude/platform_linux.GNU b/include/makeinclude/platform_linux.GNU index aedb97be186..94ecae2c5dd 100644 --- a/include/makeinclude/platform_linux.GNU +++ b/include/makeinclude/platform_linux.GNU @@ -103,15 +103,6 @@ ifeq ($(threads),1) endif # ! PRELIB endif -# support for OpenSS7 SCTP -ifeq ($(sctp),openss7) - PLATFORM_SCTP_CPPFLAGS= -DACE_HAS_OPENSS7_SCTP - PLATFORM_SCTP_LDFLAGS= - PLATFORM_SCTP_LIBS= -endif - -# Eventually Other SCTP implementations will go here - #### GNU gas has a string limit of 4096 characters. On Alphas, #### builds will fail due to running over that limit. There are #### at least two workarounds: diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index 12754831195..46c89b04753 100644 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -59,10 +59,6 @@ # 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 @@ -124,9 +120,6 @@ # 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 @@ -460,13 +453,6 @@ 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 |