diff options
author | vishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-27 03:50:08 +0000 |
---|---|---|
committer | vishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-27 03:50:08 +0000 |
commit | 1bd70b80973de204dbd3563c30ca8f1164411678 (patch) | |
tree | c2400cae1fe37aef1433767ed7d98bcf73aaae44 /include | |
parent | bb2a958471fdb157a0df1b6e4620f79a7ccacdf8 (diff) | |
download | ATCD-1bd70b80973de204dbd3563c30ca8f1164411678.tar.gz |
*** empty log message ***
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index b7fdf31f5a7..eabadcf23b8 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. +# rapi Build with RAPI # # Usually, users do not need to be concerned with make targets. # Just enter "make" on the command line to build. A few notable @@ -97,6 +98,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_RAPI_CPPFLAGS Platform CPP options for RAPI +# PLATFORM_RAPI_LDFLAGS Platform LD options for RAPI +# PLATFORM_RAPI_LIBS Platform libraries required with RAPI # PRELINK Executable to precede linking, such as quantify # PURELINK If set, contains purify executable as well as all options # PURE_CACHE_BASE_DIR @@ -148,6 +152,9 @@ versioned_so = 0 #### the library xt_reactor = 0 +#### flag to Include/Preclude the RAPI support in ACE +rapi = 0 + include $(ACE_ROOT)/include/makeinclude/platform_macros.GNU #---------------------------------------------------------------------------- @@ -335,6 +342,16 @@ ifneq ($(qt_reactor),) LDFLAGS += $(PLATFORM_QT_LDFLAGS) endif # qt_reactor +ifeq ($(rapi),0) + override rapi = +endif #rapi + +ifneq ($(rapi),) + CPPFLAGS += -DACE_HAS_RAPI $(PLATFORM_RAPI_CPPFLAGS) + LIBS += $(PLATFORM_RAPI_LIBS) + LDFLAGS += $(PLATFORM_RAPI_LDFLAGS) +endif # rapi + ifeq ($(ace_with_gl),0) override ace_with_gl = endif # ace_with_gl |