summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-17 15:30:17 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-17 15:30:17 +0000
commit342d49c618ffe2856192f02c5c3312531c1534a9 (patch)
treec4d278a55609fbc14ae6fbed892c7b77f894beec
parent92bfe91de9d65551e2af2eb96b00fcd41f4137b0 (diff)
downloadATCD-342d49c618ffe2856192f02c5c3312531c1534a9.tar.gz
ChangeLogTag:Wed Dec 17 15:21:36 UTC 2003 Don Hinton <dhinton@dresystems.com>
-rw-r--r--ChangeLog11
-rw-r--r--performance-tests/Misc/Makefile3
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 763c287fdc5..ff924a99248 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Wed Dec 17 15:21:36 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * performance_tests/Misc/Makefile:
+ Remove static_libs_only=0 and add static_libs=1 and
+ shared_libs=0 to insure that only static libs are built. We
+ need to set these values individually instead of setting
+ static_libs_only, since users may override it in
+ platform_macros.GNU. Thanks to John Zorko <jmzorko@mac.com> for
+ tracking this down and supplying the patch. This fixed the
+ MacOSX compile errors on the scoreboard.
+
Wed Dec 17 11:25:43 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TMCast/Group.cpp:
diff --git a/performance-tests/Misc/Makefile b/performance-tests/Misc/Makefile
index c811f7f96b2..88bfb680f31 100644
--- a/performance-tests/Misc/Makefile
+++ b/performance-tests/Misc/Makefile
@@ -17,7 +17,8 @@ BIN = basic_perf \
#### See below for test_naming.
# Only build static library for optimum run-time speed.
-static_libs_only = 1
+static_libs = 1
+shared_libs = 0
LIB = libPerf.a
FILES = basic_func
LSRC = $(addsuffix .cpp,$(FILES))