diff options
author | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-02-04 18:17:45 +0000 |
---|---|---|
committer | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-02-04 18:17:45 +0000 |
commit | af7b127f563c42710ee6730cfc988f689316e90b (patch) | |
tree | c0801479091ab1f740f2183cedff5b5b3d0cf29d /include/makeinclude | |
parent | 2885f5ddb4f3eeb137b8b7a2d259ba8631f7b0d0 (diff) | |
download | ATCD-af7b127f563c42710ee6730cfc988f689316e90b.tar.gz |
Wed Feb 4 18:15:16 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/platform_linux.GNU | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/makeinclude/platform_linux.GNU b/include/makeinclude/platform_linux.GNU index 565d1178b17..e176a1fd2c0 100644 --- a/include/makeinclude/platform_linux.GNU +++ b/include/makeinclude/platform_linux.GNU @@ -127,16 +127,16 @@ endif sctp ?= # support for OpenSS7 SCTP ifeq ($(sctp),openss7) - PLATFORM_SCTP_CPPFLAGS= -DACE_HAS_OPENSS7_SCTP - PLATFORM_SCTP_LDFLAGS= - PLATFORM_SCTP_LIBS= + PLATFORM_SCTP_CPPFLAGS?= -DACE_HAS_OPENSS7_SCTP + PLATFORM_SCTP_LDFLAGS?= + PLATFORM_SCTP_LIBS?= endif # support for LKSCTP (Linux Kernel 2.5) ifeq ($(sctp),lksctp) - PLATFORM_SCTP_CPPFLAGS= -DACE_HAS_LKSCTP - PLATFORM_SCTP_LDFLAGS= - PLATFORM_SCTP_LIBS= /usr/local/lib/libsctp.a + PLATFORM_SCTP_CPPFLAGS?= -DACE_HAS_LKSCTP + PLATFORM_SCTP_LDFLAGS?= + PLATFORM_SCTP_LIBS?= /usr/local/lib/libsctp.a endif #### GNU gas has a string limit of 4096 characters. On Alphas, |