summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-01-09 19:41:04 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-01-09 19:41:04 +0000
commit6ee0d087feb50442ee9a784fe43b4d438d1a2320 (patch)
tree1326f8920e31e8f1811ebc1b415d4ad952729798
parent44d443278d657a9fa9162bfb505a7d2f426e84bf (diff)
downloadATCD-6ee0d087feb50442ee9a784fe43b4d438d1a2320.tar.gz
ChangeLogTag:Wed Jan 9 11:38:58 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--tests/SSL/Makefile2
4 files changed, 25 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b092d12ba5c..b214fa79622 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Jan 9 11:38:58 2002 Ossama Othman <ossama@uci.edu>
+
+ * tests/SSL/Makefile (LDLIBS):
+
+ Added missing SSL and crypto libraries. Fixed link errors.
+ Thanks to Marvin Wolfthal <maw@weichi.com> for reporting the
+ error and suggesting a fix.
+
Wed Jan 9 12:24:39 2002 Steve Huston <shuston@riverace.com>
* ace/Process.cpp (spawn): Don't attempt ACE_OS::setpgid if
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index b092d12ba5c..b214fa79622 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Wed Jan 9 11:38:58 2002 Ossama Othman <ossama@uci.edu>
+
+ * tests/SSL/Makefile (LDLIBS):
+
+ Added missing SSL and crypto libraries. Fixed link errors.
+ Thanks to Marvin Wolfthal <maw@weichi.com> for reporting the
+ error and suggesting a fix.
+
Wed Jan 9 12:24:39 2002 Steve Huston <shuston@riverace.com>
* ace/Process.cpp (spawn): Don't attempt ACE_OS::setpgid if
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index b092d12ba5c..b214fa79622 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Wed Jan 9 11:38:58 2002 Ossama Othman <ossama@uci.edu>
+
+ * tests/SSL/Makefile (LDLIBS):
+
+ Added missing SSL and crypto libraries. Fixed link errors.
+ Thanks to Marvin Wolfthal <maw@weichi.com> for reporting the
+ error and suggesting a fix.
+
Wed Jan 9 12:24:39 2002 Steve Huston <shuston@riverace.com>
* ace/Process.cpp (spawn): Don't attempt ACE_OS::setpgid if
diff --git a/tests/SSL/Makefile b/tests/SSL/Makefile
index ddd38f92c3c..85930d57583 100644
--- a/tests/SSL/Makefile
+++ b/tests/SSL/Makefile
@@ -12,7 +12,7 @@
BIN = Thread_Pool_Reactor_SSL_Test
PSRC=$(addsuffix .cpp,$(BIN))
-LDLIBS = -lACE_SSL
+LDLIBS = -lACE_SSL -lssl -lcrypto
CPPFLAGS += -I..
#----------------------------------------------------------------------------