summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-10-06 16:37:45 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-10-06 16:37:45 +0000
commit48c28bb3161afeb6bb94fcefe2c0221c99689b50 (patch)
tree2de640194d148adb54f5133d237daf3db82c3072
parentfe94d96e9be6c31df70568869da29b4098994e05 (diff)
downloadATCD-48c28bb3161afeb6bb94fcefe2c0221c99689b50.tar.gz
ChangeLogTag:Sun Oct 6 09:35:07 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog10
-rw-r--r--TAO/orbsvcs/Logging_Service/Basic_Logging_Service/Makefile2
-rwxr-xr-xTAO/orbsvcs/Logging_Service/Event_Logging_Service/Makefile2
-rwxr-xr-xTAO/orbsvcs/Logging_Service/Notify_Logging_Service/Makefile2
-rwxr-xr-xTAO/orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile2
5 files changed, 14 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 39c1d33ae46..a74ce8aa0f0 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,13 @@
+Sun Oct 6 09:35:07 2002 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/Logging_Service/Event_Logging_Service/Makefile (LDLIBS):
+ * orbsvcs/Logging_Service/Notify_Logging_Service/Makefile (LDLIBS):
+ * orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile (LDLIBS):
+ * orbsvcs/Logging_Service/Basic_Logging_Service/Makefile (LDLIBS):
+
+ Corrected order of libraries to link. Order matters on UNIX
+ platforms. Addresses some "undefined reference" errors.
+
Sun Oct 6 09:28:18 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Makefile (MKLIST):
diff --git a/TAO/orbsvcs/Logging_Service/Basic_Logging_Service/Makefile b/TAO/orbsvcs/Logging_Service/Basic_Logging_Service/Makefile
index ff52ceadcdb..9576363a64f 100644
--- a/TAO/orbsvcs/Logging_Service/Basic_Logging_Service/Makefile
+++ b/TAO/orbsvcs/Logging_Service/Basic_Logging_Service/Makefile
@@ -10,7 +10,7 @@ LSRC = Basic_Logging_Service.cpp
LOG_OBJS=$(LSRC:.cpp=.o)
-LDLIBS = -lTAO -lTAO_PortableServer -lTAO_DsLogAdmin -lTAO_CosNaming -lACE
+LDLIBS = -lTAO_DsLogAdmin -lTAO_CosNaming -lTAO_PortableServer -lTAO -lACE
BIN2 = Basic_Logging_Service
diff --git a/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Makefile b/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Makefile
index f8e147dac76..53402faf28d 100755
--- a/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Makefile
+++ b/TAO/orbsvcs/Logging_Service/Event_Logging_Service/Makefile
@@ -10,7 +10,7 @@ LSRC = Event_Logging_Service.cpp
LOG_OBJS=$(LSRC:.cpp=.o)
-LDLIBS = -lTAO -lTAO_PortableServer -lTAO_DsLogAdmin -lTAO_DsEventLogAdmin -lTAO_CosNaming -lACE -lTAO_CosEvent
+LDLIBS = -lTAO_DsEventLogAdmin -lTAO_DsLogAdmin -lTAO_CosEvent -lTAO_CosNaming -lTAO_PortableServer -lTAO -lACE
BIN2 = Event_Logging_Service
diff --git a/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Makefile b/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Makefile
index 3dbaa262556..f6ff93ac3fa 100755
--- a/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Makefile
+++ b/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Makefile
@@ -19,7 +19,7 @@ CLIENT_OBJS = \
Notify_Logging_Service.o \
Notify_Logging_Server.o
-LDLIBS = -lTAO_IORTable -lTAO -lTAO_CosNotification -lTAO_DsNotifyLogAdmin -lACE -lTAO_PortableServer -lTAO_DsLogAdmin -lTAO_CosNaming
+LDLIBS = -lTAO_DsNotifyLogAdmin -lTAO_DsLogAdmin -lTAO_CosNotification -lTAO_CosNaming -lTAO_IORTable -lTAO_PortableServer -lTAO -lACE
BIN2 = Notify_Logging_Service
diff --git a/TAO/orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile b/TAO/orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile
index c5acb1bf628..bbca44e1697 100755
--- a/TAO/orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile
+++ b/TAO/orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile
@@ -10,7 +10,7 @@ LSRC = RTEvent_Logging_Service.cpp
LOG_OBJS=$(LSRC:.cpp=.o)
-LDLIBS = -lTAO -lTAO_PortableServer -lTAO_DsLogAdmin -lTAO_RTEventLogAdmin -lTAO_CosNaming -lACE -lTAO_RTEvent -lTAO_RTSched
+LDLIBS = -lTAO_RTEventLogAdmin -lTAO_DsLogAdmin -lTAO_RTEvent -lTAO_RTSched -lTAO_CosNaming -lTAO_PortableServer -lTAO -lACE
BIN2 = RTEvent_Logging_Service