summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-03-01 18:55:52 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-03-01 18:55:52 +0000
commit58530720937394d8db5a99856af4e700d447e1c9 (patch)
tree3a43e6084192fad66c2f654b0e4edf426479f734
parent7c0a2ee00b5fa6119b7c90ae76809d9c8f1d9f53 (diff)
downloadATCD-58530720937394d8db5a99856af4e700d447e1c9.tar.gz
ChangeLogTag:Thu Mar 1 10:54:23 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog16
-rw-r--r--ChangeLogs/ChangeLog-02a16
-rw-r--r--ChangeLogs/ChangeLog-03a16
-rw-r--r--bin/auto_run_tests.lst1
-rw-r--r--include/makeinclude/wrapper_macros.GNU31
5 files changed, 62 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ae4d7428de..5db81d8ecd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,22 @@
+Thu Mar 1 10:54:23 2001 Ossama Othman <ossama@uci.edu>
+
+ * bin/auto_run_tests.lst:
+
+ Added the TAO Codec to the list of tests to run.
+
+ * include/makeinclude/wrapper_macros.GNU:
+
+ Fixed all incorrect uses of CFLAGS and CCFLAGS where
+ preprocessor macros were defined. Preprocessor macros should be
+ defined in the CPPFLAGS variable.
+
+ Define ACE_USE_RCSID in non-debug builds (i.e. debug=0).
+
Thu Mar 01 07:29:58 2001 Carlos O'Ryan <coryan@uci.edu>
* bin/auto_run_tests.lst:
Fixed typos in the Service_Context_Manipulation test. It was
- running in platforms where it shouldn't
+ running in platforms where it shouldn't.
Thu Mar 01 07:07:03 2001 Christopher Kohlhoff <chris@kohlhoff.com>
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 8ae4d7428de..5db81d8ecd8 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,8 +1,22 @@
+Thu Mar 1 10:54:23 2001 Ossama Othman <ossama@uci.edu>
+
+ * bin/auto_run_tests.lst:
+
+ Added the TAO Codec to the list of tests to run.
+
+ * include/makeinclude/wrapper_macros.GNU:
+
+ Fixed all incorrect uses of CFLAGS and CCFLAGS where
+ preprocessor macros were defined. Preprocessor macros should be
+ defined in the CPPFLAGS variable.
+
+ Define ACE_USE_RCSID in non-debug builds (i.e. debug=0).
+
Thu Mar 01 07:29:58 2001 Carlos O'Ryan <coryan@uci.edu>
* bin/auto_run_tests.lst:
Fixed typos in the Service_Context_Manipulation test. It was
- running in platforms where it shouldn't
+ running in platforms where it shouldn't.
Thu Mar 01 07:07:03 2001 Christopher Kohlhoff <chris@kohlhoff.com>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 8ae4d7428de..5db81d8ecd8 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,8 +1,22 @@
+Thu Mar 1 10:54:23 2001 Ossama Othman <ossama@uci.edu>
+
+ * bin/auto_run_tests.lst:
+
+ Added the TAO Codec to the list of tests to run.
+
+ * include/makeinclude/wrapper_macros.GNU:
+
+ Fixed all incorrect uses of CFLAGS and CCFLAGS where
+ preprocessor macros were defined. Preprocessor macros should be
+ defined in the CPPFLAGS variable.
+
+ Define ACE_USE_RCSID in non-debug builds (i.e. debug=0).
+
Thu Mar 01 07:29:58 2001 Carlos O'Ryan <coryan@uci.edu>
* bin/auto_run_tests.lst:
Fixed typos in the Service_Context_Manipulation test. It was
- running in platforms where it shouldn't
+ running in platforms where it shouldn't.
Thu Mar 01 07:07:03 2001 Christopher Kohlhoff <chris@kohlhoff.com>
diff --git a/bin/auto_run_tests.lst b/bin/auto_run_tests.lst
index feb4a314d35..c3faf50677d 100644
--- a/bin/auto_run_tests.lst
+++ b/bin/auto_run_tests.lst
@@ -46,6 +46,7 @@ TAO/tests/IORManipulation/run_test.pl
TAO/tests/Policies/run_test.pl: !MINIMUM !ST
TAO/tests/Timeout/run_test.pl: !MINIMUM
TAO/tests/Timed_Buffered_Oneways/run_test.pl: !MINIMUM
+TAO/tests/Codec/run_test.pl
TAO/tests/IDL_Test/run_test.pl
TAO/tests/ORB_init/run_test.pl
TAO/tests/ORB_destroy/run_test.pl
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index 5fed6644b06..891187c3831 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -1,3 +1,5 @@
+# -*- Makefile -*-
+
#----------------------------------------------------------------------------
# $Id$
#----------------------------------------------------------------------------
@@ -303,7 +305,7 @@ endif # split
ifneq ($(split),)
override split_target = SPLIT
override debug = 0
- CFLAGS += -DACE_IS_SPLITTING
+ CPPFLAGS += -DACE_IS_SPLITTING
else
override split_target =
endif # split
@@ -313,10 +315,10 @@ ifeq ($(debug),0)
endif # debug
ifeq ($(debug),)
- ifeq (,$(findstring $(CFLAGS),$(CCFLAGS)))
- CCFLAGS += -DACE_NDEBUG
- else
- CFLAGS += -DACE_NDEBUG
+ CPPFLAGS += -DACE_NDEBUG
+# Disable the RCSID for release/non-debug builds.
+ ifeq (,$(findstring ACE_USE_RCSID,$(CPPFLAGS)))
+ CPPFLAGS += -DACE_USE_RCSID=0
endif
else
CFLAGS += $(DCFLAGS)
@@ -454,9 +456,9 @@ endif # pace
ifneq ($(pace),)
ifneq ($(inline),0)
- CFLAGS += -DPACE_HAS_INLINE=1
+ CPPFLAGS += -DPACE_HAS_INLINE=1
endif
- CFLAGS += -DACE_HAS_PACE -DPACE_HAS_ALL_POSIX_FUNCS -I$(ACE_ROOT)/PACE
+ CPPFLAGS += -DACE_HAS_PACE -DPACE_HAS_ALL_POSIX_FUNCS -I$(ACE_ROOT)/PACE
ACELIB = -lACE
ifeq ($(inline),0)
ACELIB += -lPACE
@@ -475,10 +477,10 @@ ifneq ($(profile),)
endif # profile
ifeq ($(inline),0)
- CCFLAGS += -DACE_NO_INLINE
+ CPPFLAGS += -DACE_NO_INLINE
else
ifeq ($(inline),1)
- CCFLAGS += -D__ACE_INLINE__
+ CPPFLAGS += -D__ACE_INLINE__
endif # inline eq 1
endif # inline eq 0
@@ -560,7 +562,7 @@ ifeq ($(probe),0)
endif # probe
ifeq ($(probe),1)
- CCFLAGS += -DACE_COMPILE_TIMEPROBES
+ CPPFLAGS += -DACE_COMPILE_TIMEPROBES
endif # probe
ifeq ($(purify),0)
@@ -581,8 +583,7 @@ ifdef purify
PURELINK += purify -best-effort -cache-dir=$(PURE_CACHE_DIR) \
-chain-length=20 -fds-inuse-at-exit=no \
-inuse-at-exit -max_threads=100
- CCFLAGS += -DACE_HAS_PURIFY
- CPPFLAGS += -I$(ACE_PURIFY_DIR)
+ CPPFLAGS += -DACE_HAS_PURIFY -I$(ACE_PURIFY_DIR)
endif # purify
ifeq ($(quantify),0)
@@ -599,8 +600,7 @@ ifdef quantify
#### to help avoid occasional link failure.
PRELINK += quantify -best-effort -cache-dir=$(PURE_CACHE_DIR) \
-max_threads=100
- CCFLAGS += -DACE_HAS_QUANTIFY
- CPPFLAGS += -I$(ACE_QUANTIFY_DIR)
+ CPPFLAGS += -DACE_HAS_QUANTIFY -I$(ACE_QUANTIFY_DIR)
ifeq ($(shell uname -p),sparc)
PRELINK += -record-register-window-traps
@@ -614,7 +614,8 @@ endif # repo
ifdef repo
#### Remove -fno-implicit-templates from, and add -frepo to, CCFLAGS.
CCFLAGS := $(strip $(subst -fno-implicit-templates,,$(CCFLAGS)))
- CCFLAGS += -frepo -DACE_HAS_GNU_REPO
+ CCFLAGS += -frepo
+ CPPFLAGS += -DACE_HAS_GNU_REPO
# ace_lib_prelink := 1
endif # repo