summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-11-02 12:58:19 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-11-02 12:58:19 +0000
commit4729607ffa3edf23cd20ae70effcbbbf8581b987 (patch)
treea24e02ff58f5cc58774d86e7a817dde0b97e294a
parentbf766c9547cfc8abbed5d779f77e35835a5f3151 (diff)
downloadATCD-4729607ffa3edf23cd20ae70effcbbbf8581b987.tar.gz
ChangeLogTag: Tue Nov 2 06:56:21 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog21
-rw-r--r--performance-tests/SCTP/SCTP.mpc14
2 files changed, 29 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 41662f0307c..2f441c8d7eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Tue Nov 2 06:56:21 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * performance-tests/SCTP/SCTP.mpc:
+
+ Added verbatim sections to the client projects to adds $(MATHLIB)
+ to LDLIBS for gnuace projects. The math library is needed for
+ some UNIX platforms and is set in the corresponding platform_*.GNU
+ files.
+
Tue Nov 2 07:59:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/SCTP/Options_Manager.cpp:
@@ -6,8 +15,8 @@ Tue Nov 2 07:59:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Mon Nov 1 10:21:00 2004 Gary Maxey <gary.maxey@hp.com>
- * ace/TP_Reactor.cpp: performace enhancement in handle_timer_events
- See Bugzilla #1971 for details.
+ * ace/TP_Reactor.cpp: performace enhancement in handle_timer_events
+ See Bugzilla #1971 for details.
Mon Nov 1 08:37:47 2004 Phil Mesnier <mesnier_p@ociweb.com>
@@ -46,13 +55,13 @@ Fri Oct 29 22:48:34 2004 Phil Mesnier <mesnier_p@ociweb.com>
Fri Oct 29 12:15:23 2004 Steve Huston <shuston@riverace.com>
- * performance-tests/SCTP/SOCK_SEQPACK_clt.cpp: Add missing #include
- "ace/OS_Memory.h" to find ACE_NEW_RETURN.
+ * performance-tests/SCTP/SOCK_SEQPACK_clt.cpp: Add missing #include
+ "ace/OS_Memory.h" to find ACE_NEW_RETURN.
Fri Oct 29 12:09:28 2004 Steve Huston <shuston@riverace.com>
- * examples/Shared_Memory/test_MM.cpp: Don't try ACE_OS::mkstemp()
- if ACE_LACKS_MKSTEMP is defined.
+ * examples/Shared_Memory/test_MM.cpp: Don't try ACE_OS::mkstemp()
+ if ACE_LACKS_MKSTEMP is defined.
Fri Oct 29 09:30:37 2004 Chad Elliott <elliott_c@ociweb.com>
diff --git a/performance-tests/SCTP/SCTP.mpc b/performance-tests/SCTP/SCTP.mpc
index 2baa7ce0489..91e7b815f4d 100644
--- a/performance-tests/SCTP/SCTP.mpc
+++ b/performance-tests/SCTP/SCTP.mpc
@@ -8,6 +8,13 @@ project(*SOCK_STREAM_clt) : aceexe {
Options_Manager.cpp
hist.cpp
}
+
+ // Some source code uses the sqrt and pow function and
+ // some UNIX operating systems need the math library to
+ // get the symbol.
+ verbatim(gnuace, local) {
+ LDLIBS += $(MATHLIB)
+ }
}
project(*SOCK_STREAM_srv) : aceexe {
@@ -25,6 +32,13 @@ project(*SOCK_SEQPACK_clt) : aceexe {
Options_Manager.cpp
hist.cpp
}
+
+ // Some source code uses the sqrt and pow function and
+ // some UNIX operating systems need the math library to
+ // get the symbol.
+ verbatim(gnuace, local) {
+ LDLIBS += $(MATHLIB)
+ }
}
project(*SOCK_SEQPACK_srv) : aceexe {