summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-20 22:24:18 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-20 22:24:18 +0000
commit081833f0f278fd7f01d5f05d234b2aab3a6f8177 (patch)
tree5b7b4376998fdab2d776c11623926ad68e71d37f
parent9afec9b1c531a526f96ddc2572171867b53cbddc (diff)
downloadATCD-081833f0f278fd7f01d5f05d234b2aab3a6f8177.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-98c9
-rw-r--r--TAO/tests/POA/Generic_Servant/Makefile4
-rw-r--r--TAO/tests/POA/Generic_Servant/MyFooServant.h1
3 files changed, 13 insertions, 1 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 7810dc73d39..c33423e5093 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,12 @@
+Fri Mar 20 16:21:28 1998 Irfan Pyarali <irfan@cs.wustl.edu>
+
+ * tests/POA/Generic_Servant/MyFooServant.h: No need to include
+ generic_servant_export.h.
+
+ * tests/POA/Generic_Servant/Makefile: Added flags to the idl
+ compiler so that the server library can be made as a dynamic
+ library.
+
Thu Mar 20 16:12:42 1998 Michael Kircher <mk1@cs.wustl.edu>
* $TAO_ROOT/orbsvcs/tests/Simulator/Event_Supplier:
diff --git a/TAO/tests/POA/Generic_Servant/Makefile b/TAO/tests/POA/Generic_Servant/Makefile
index ccbe6fbfe6a..14534244b67 100644
--- a/TAO/tests/POA/Generic_Servant/Makefile
+++ b/TAO/tests/POA/Generic_Servant/Makefile
@@ -13,6 +13,10 @@ ifndef TAO_ROOT
TAO_ROOT = $(ACE_ROOT)/TAO
endif # ! TAO_ROOT
+# On non-Windows environment, we should at least define
+# the export_include IDL flag.
+TAO_IDLFLAGS = -Wb,export_macro=GENERIC_SERVANT_Export -Wb,export_include=generic_servant_export.h
+
LDLIBS = -lTAO
LIB = libserver.a
diff --git a/TAO/tests/POA/Generic_Servant/MyFooServant.h b/TAO/tests/POA/Generic_Servant/MyFooServant.h
index 3c6be740a92..60d08af7ce1 100644
--- a/TAO/tests/POA/Generic_Servant/MyFooServant.h
+++ b/TAO/tests/POA/Generic_Servant/MyFooServant.h
@@ -17,7 +17,6 @@
#define MYFOOSERVANT_H
#include "FooS.h"
-#include "generic_servant_export.h"
class GENERIC_SERVANT_Export MyFooServant : public POA_Foo
{