summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-04 04:50:10 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-04 04:50:10 +0000
commit90ce6620f2d7a09f7f297c4366469ecc0232a24d (patch)
tree0d53e9ad00c05a7a9d6449bfdaf207a4741edcb9 /TAO
parent0e9a70ed38d7bc4c67b95bc8eec08ccbcd237259 (diff)
downloadATCD-90ce6620f2d7a09f7f297c4366469ecc0232a24d.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO')
-rw-r--r--TAO/TAO_IDL/driver/drv_preproc.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/driver/drv_preproc.cpp b/TAO/TAO_IDL/driver/drv_preproc.cpp
index 1c176a0b8a6..00bf51487c8 100644
--- a/TAO/TAO_IDL/driver/drv_preproc.cpp
+++ b/TAO/TAO_IDL/driver/drv_preproc.cpp
@@ -133,6 +133,7 @@ DRV_cpp_init()
DRV_cpp_putarg("-E");
DRV_cpp_putarg("-DIDL");
DRV_cpp_putarg("-I.");
+// DRV_cpp_putarg("-I$(TAO_ROOT)/tao");
}
/*
@@ -463,8 +464,10 @@ DRV_check_for_include (const char* buf)
// Terminate this string.
file_name [i] = '\0';
- // Store in the idl_global.
- idl_global->add_to_included_idl_files (file_name);
+ // Store in the idl_global, unless it's "orb.idl" -
+ // we don't want to generate header includes for that.
+ if (ACE_OS::strcmp (file_name, "orb.idl"))
+ idl_global->add_to_included_idl_files (file_name);
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)