summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/demo/Ice/throughput/Makefile11
-rwxr-xr-xcpp/makebindist.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/cpp/demo/Ice/throughput/Makefile b/cpp/demo/Ice/throughput/Makefile
index 1ef9e7494bf..d4020cb48e3 100644
--- a/cpp/demo/Ice/throughput/Makefile
+++ b/cpp/demo/Ice/throughput/Makefile
@@ -29,7 +29,16 @@ SLICE_SRCS = Throughput.ice
include $(top_srcdir)/config/Make.rules
-CPPFLAGS := -I. $(CPPFLAGS)
+ifeq ($(CXX),aCC)
+#
+# Work-around 'quadrant warning' in aCC A.03.56
+# Puts string literals in read-write memory
+#
+EXTRA_CPPFLAGS := +ESnolit
+endif
+
+CPPFLAGS := -I. $(CPPFLAGS) $(EXTRA_CPPFLAGS)
+
$(CLIENT): $(OBJS) $(COBJS)
rm -f $@
diff --git a/cpp/makebindist.py b/cpp/makebindist.py
index 5e5ddc90058..145a43f3cdc 100755
--- a/cpp/makebindist.py
+++ b/cpp/makebindist.py
@@ -157,6 +157,7 @@ def getInstallFiles(cvsTag, buildDir, version, mmVersion):
runprog('cvs -d cvs.zeroc.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/common')
runprog('cvs -d cvs.zeroc.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/rpm')
runprog('cvs -d cvs.zeroc.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/thirdparty')
+ fixVersion('ice/install/common/README.DEMOS', version, mmVersion)
snapshot = os.walk('./ice/install/unix')
for dirInfo in snapshot:
for f in dirInfo[2]:
@@ -179,6 +180,7 @@ def getInstallFilesFromLocalDirectory(cvsTag, buildDir, version, mmVersion):
os.makedirs(target)
for f in ['unix', 'common', 'rpm', 'thirdparty']:
shutil.copytree(os.path.join(iceloc, f), os.path.join(target, f))
+ fixVersion('ice/install/common/README.DEMOS', version, mmVersion)
snapshot = os.walk('./ice/install/unix')
for dirInfo in snapshot:
for f in dirInfo[2]: