summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-03-15 13:51:29 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-03-15 13:51:29 +0000
commit001ee30a8325119415953d0679b10932499566b1 (patch)
treef349bca00bff50ad001f17d662fb404448dcbe42
parent5566a30e544723dd3846d3dc41b6c7d6d48c7406 (diff)
downloadATCD-001ee30a8325119415953d0679b10932499566b1.tar.gz
ChangeLogTag: Fri Mar 15 07:50:23 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a11
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.cpp5
2 files changed, 16 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index e41c0ef6de1..4a85a65c35a 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,14 @@
+Fri Mar 15 07:50:23 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ Committing this change for Yan Dai <dai_y@ociweb.com>.
+
+ * tao/SmartProxies/Smart_Proxies.cpp:
+
+ Declared an integer to please the VisualAge5.0.2.2 compiler,
+ otherwise this error message is displayed.
+
+ "ld: 0711-244 ERROR: No csects or exported symbols have been saved."
+
Fri Mar 15 07:15:28 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/CosNaming.dsp:
diff --git a/TAO/tao/SmartProxies/Smart_Proxies.cpp b/TAO/tao/SmartProxies/Smart_Proxies.cpp
index a098d371991..91e62e5cafc 100644
--- a/TAO/tao/SmartProxies/Smart_Proxies.cpp
+++ b/TAO/tao/SmartProxies/Smart_Proxies.cpp
@@ -8,4 +8,9 @@ ACE_RCSID(SmartProxies, Smart_Proxies, "$Id$")
#include "Smart_Proxies.inl"
#endif /* defined INLINE */
+// Add this line to please the AIX linker, otherwise it complains
+// "ld: 0711-244 ERROR: No csects or exported symbols have been saved."
+#if defined (ACE_NDEBUG) && defined (AIX)
+int the_bogus_value_to_please_linker_to_export_symbol;
+#endif