diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-03-12 13:13:13 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-03-12 13:13:13 +0000 |
commit | 4276a78aab6aecd65be45e47622440f248e081e3 (patch) | |
tree | 7d40ac58d7b4ef03abc0adb5576c716f9d085422 /ACE/include | |
parent | 6f5ca60dda4392d72443fa6a2ac3a3e7af734853 (diff) | |
download | ATCD-4276a78aab6aecd65be45e47622440f248e081e3.tar.gz |
Mon Mar 12 13:12:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/include')
-rw-r--r-- | ACE/include/makeinclude/platform_vxworks6.3.GNU | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ACE/include/makeinclude/platform_vxworks6.3.GNU b/ACE/include/makeinclude/platform_vxworks6.3.GNU index 7d15bc76b9c..dc0deb43d43 100644 --- a/ACE/include/makeinclude/platform_vxworks6.3.GNU +++ b/ACE/include/makeinclude/platform_vxworks6.3.GNU @@ -24,6 +24,7 @@ exceptions ?= 1 rtp ?= 1 pthread ?= 1 xerces ?= 0 +aio ?= 0 ifeq ($(static_libs),1) shared_libs = 0 @@ -181,6 +182,12 @@ ifeq ($(rtp),1) CPPFLAGS += -mrtp SOFLAGS += -mrtp endif + ifeq ($(SHARED_LIBS), 1) + ifeq ($(aio),1) + CPPFLAGS += -DACE_HAS_AIO_CALLS + LIBS += AioPx + endif + endif LDFLAGS := $(filter-out -X, $(LDFLAGS)) LDFLAGS := $(filter-out -N, $(LDFLAGS)) LD := $(CPLUS) |