diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-24 12:02:59 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-24 12:02:59 +0000 |
commit | 98dd97ba17a372bec10cf3fd719d55ad0830fa1a (patch) | |
tree | 4312468d82f75e563548cebe5c948a0e5e80b366 /include/makeinclude/platform_tru64_cxx.GNU | |
parent | dc856cfcc8add879995a949052ce7d52f0ec2244 (diff) | |
download | ATCD-98dd97ba17a372bec10cf3fd719d55ad0830fa1a.tar.gz |
use pragmas instead of command line arguments to disable specific warning messgaes
Diffstat (limited to 'include/makeinclude/platform_tru64_cxx.GNU')
-rw-r--r-- | include/makeinclude/platform_tru64_cxx.GNU | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/makeinclude/platform_tru64_cxx.GNU b/include/makeinclude/platform_tru64_cxx.GNU index 3b1c6fc7fd3..285499f3454 100644 --- a/include/makeinclude/platform_tru64_cxx.GNU +++ b/include/makeinclude/platform_tru64_cxx.GNU @@ -9,27 +9,22 @@ endif # ACE_DU_VERSION ifeq (3.,$(findstring 3.,$(ACE_DU_VERSION))) include $(ACE_ROOT)/include/makeinclude/platform_osf1_3.2.GNU + else # ! 3.x ifeq (4.,$(findstring 4.,$(ACE_DU_VERSION))) include $(ACE_ROOT)/include/makeinclude/platform_osf1_4.0.GNU - CFLAGS += -DDIGITAL_UNIX=4 ifneq ($(CXX_VER),CXX_5) # 9: nested comment not allowed. But there's one in /usr/include/pdsc.h! WARNING_FLAGS += -msg_disable 9 endif # 6.0 or later + else # ! 4.x ifeq (5.,$(findstring 5.,$(ACE_DU_VERSION))) include $(ACE_ROOT)/include/makeinclude/platform_osf1_4.0.GNU - CFLAGS += -DDIGITAL_UNIX=5 - - ifeq (6.,$(findstring 6.,$(CXX_VERSION))) - #### variable "PTHREAD_THIS_CATCH_NP" was declared but never referenced - WARNING_FLAGS += -msg_disable 177 - endif # 6.0 or later - SOFLAGS = -shared -use_ld_input $(ACELIB) + endif # 5.x endif # ! 4.x endif # ! 3.x |