summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-07-30 02:06:03 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-07-30 02:06:03 +0000
commit3a393ef3a8e4b8ee5dde4d69d28d61d28986d77b (patch)
treede9443c085b338b9dc7a96bf00762bf40633c75d
parentba5270bd0032814042fa18d27208b3cb5d410eec (diff)
downloadATCD-3a393ef3a8e4b8ee5dde4d69d28d61d28986d77b.tar.gz
Override minimum_corba variable if it isn't set to 1 (i.e. if
minimum_corba is not enabled). This change was needed to make it easier to disable some TAO ORB services, examples and tests that rely on CORBA features that aren't supported in the minimum CORBA specification.
-rw-r--r--include/makeinclude/wrapper_macros.GNU4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index 1addb6fa6be..36df907a417 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -320,7 +320,9 @@ else # ! exceptions
endif # ! exceptions
ifeq ($(minimum_corba),1)
- CPPFLAGS += -DTAO_HAS_MINIMUM_CORBA
+ CPPFLAGS += -DTAO_HAS_MINIMUM_CORBA
+else
+ override minimum_corba =
endif # minimum_corba
ifeq ($(profile),0)