summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-12-22 17:36:18 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-12-22 17:36:18 +0000
commite53d49e254b4ea55ea07ada680fa769038b3a666 (patch)
treef4bc68467617c5c2960dec7aa66aca1d3116de4c
parent0916183f7338ecca5484aec4d365d14d3ece47e3 (diff)
downloadATCD-e53d49e254b4ea55ea07ada680fa769038b3a666.tar.gz
ChangeLogTag:Sun Dec 22 11:31:53 2002 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--apps/Gateway/Gateway/Makefile2
-rw-r--r--apps/Gateway/Peer/Makefile1
4 files changed, 19 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c23e117ab5b..3ef9ba10b19 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Sun Dec 22 11:31:53 2002 Craig Rodrigues <crodrigu@bbn.com>
+
+ * apps/Gateway/Gateway/Makefile:
+ * apps/Gateway/Peer/Makefile: Add $(ACELIB) to $(ACE_SHLIBS) so
+ that -lACE is added to the linkline when a shared library is
+ built. Solves linking problem MacOS X. Thanks to John Zorko and
+ Daniel white <ygor@comcast.net> for pointing this out.
+
Sun Dec 22 10:25:35 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* ace/Connector.cpp: Fixed a warning with g++.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index c23e117ab5b..3ef9ba10b19 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Sun Dec 22 11:31:53 2002 Craig Rodrigues <crodrigu@bbn.com>
+
+ * apps/Gateway/Gateway/Makefile:
+ * apps/Gateway/Peer/Makefile: Add $(ACELIB) to $(ACE_SHLIBS) so
+ that -lACE is added to the linkline when a shared library is
+ built. Solves linking problem MacOS X. Thanks to John Zorko and
+ Daniel white <ygor@comcast.net> for pointing this out.
+
Sun Dec 22 10:25:35 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* ace/Connector.cpp: Fixed a warning with g++.
diff --git a/apps/Gateway/Gateway/Makefile b/apps/Gateway/Gateway/Makefile
index f930c735546..8932fa4a493 100644
--- a/apps/Gateway/Gateway/Makefile
+++ b/apps/Gateway/Gateway/Makefile
@@ -12,6 +12,8 @@ BIN = gatewayd
LIB = libGateway.a
SHLIB = libGateway.$(SOEXT)
+ACE_SHLIB += $(ACELIB)
+
FILES = Concrete_Connection_Handlers \
Config_Files \
File_Parser \
diff --git a/apps/Gateway/Peer/Makefile b/apps/Gateway/Peer/Makefile
index 7ecac7ea24b..a3869513a4e 100644
--- a/apps/Gateway/Peer/Makefile
+++ b/apps/Gateway/Peer/Makefile
@@ -7,6 +7,7 @@
#----------------------------------------------------------------------------
# Local macros
#----------------------------------------------------------------------------
+ACE_SHLIBS += $(ACELIB)
BIN = peerd
LIB = libPeer.a