diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-06 18:04:26 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-06 18:04:26 +0000 |
commit | 40d25e83ee9566df02a1dbfa0164f8ff4bf0240b (patch) | |
tree | 09a7afcbb2851df2cac389a406a570414a0f7854 /include/makeinclude/wrapper_macros.GNU | |
parent | d3d5f4ac8b778f6f8ca6f35dc46c3ea7a6f47adc (diff) | |
download | ATCD-40d25e83ee9566df02a1dbfa0164f8ff4bf0240b.tar.gz |
Tue Jun 6 12:39:23 2000 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'include/makeinclude/wrapper_macros.GNU')
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index 6f470a7929b..4b914878933 100644 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -381,7 +381,11 @@ endif # ace_with_x11 ifeq ($(exceptions),) ifeq ($(ACE_HAS_GNUG_PRE_2_8),0) #### Disable the default exception handling of g++ >= 2.8.0. - CCFLAGS += -fno-exceptions -fcheck-new + ifneq ($(ACE_GNUG_ON_UNIXWARE),) + CCFLAGS += -fcheck-new + else + CCFLAGS += -fno-exceptions -fcheck-new + endif # ! ACE_GNUG_ON_UNIXWARE endif # ! ACE_HAS_GNUG_PRE_2_8 else # exceptions CPPFLAGS += -DACE_HAS_EXCEPTIONS |