summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/config/Make.rules6
-rw-r--r--cpp/demo/Freeze/backup/README4
-rwxr-xr-xcpp/demo/Freeze/backup/backup6
3 files changed, 8 insertions, 8 deletions
diff --git a/cpp/config/Make.rules b/cpp/config/Make.rules
index 22315466ca4..5aaadbdc50b 100644
--- a/cpp/config/Make.rules
+++ b/cpp/config/Make.rules
@@ -161,9 +161,9 @@ ifneq ($(DB_HOME),)
DB_LIBS = -L$(DB_HOME)/$(libsubdir) -ldb_cxx
DB_RPATH_LINK = $(call rpathlink,$(DB_HOME)/$(libsubdir))
else
- ifeq ($(shell if [ -d /usr/include/db47 -a -d /usr/$(libsubdir)/db47 ] ; then echo yes; fi), yes)
- DB_FLAGS = -I/usr/include/db47
- DB_LIBS = -L/usr/$(libsubdir)/db47 -ldb_cxx
+ ifeq ($(shell if [ -d /usr/include/db48 -a -d /usr/$(libsubdir)/db48 ] ; then echo yes; fi), yes)
+ DB_FLAGS = -I/usr/include/db48
+ DB_LIBS = -L/usr/$(libsubdir)/db48 -ldb_cxx
else
DB_LIBS = -ldb_cxx
endif
diff --git a/cpp/demo/Freeze/backup/README b/cpp/demo/Freeze/backup/README
index a3ad4ca4028..d9a5f952757 100644
--- a/cpp/demo/Freeze/backup/README
+++ b/cpp/demo/Freeze/backup/README
@@ -19,8 +19,8 @@ db utility names
----------------
The Berkeley DB utilities are usually named db_hotbackup, db_archive,
-db_recover, etc. If you use the Berkeley DB 4.7.25 RPMs provided by
-ZeroC, the utility names are db47_hotbackup, db47_archive, etc. Please
+db_recover, etc. If you use the Berkeley DB 4.8.24 RPMs provided by
+ZeroC, the utility names are db48_hotbackup, db48_archive, etc. Please
adjust the instructions below accordingly.
diff --git a/cpp/demo/Freeze/backup/backup b/cpp/demo/Freeze/backup/backup
index 504077d5f5b..9e61b493173 100755
--- a/cpp/demo/Freeze/backup/backup
+++ b/cpp/demo/Freeze/backup/backup
@@ -9,11 +9,11 @@
# **********************************************************************
#
-# If you use a db47 RPM installation, the db utilities are
-# named db47_xxx
+# If you use a db48 RPM installation, the db utilities are
+# named db48_xxx
#
db="db"
-if [ -f /usr/bin/db47_hotbackup ]; then db="db47"; fi
+if [ -f /usr/bin/db48_hotbackup ]; then db="db48"; fi
case $1 in
"full" | "incremental") echo "Performing $1 backup"