summaryrefslogtreecommitdiff
path: root/db3
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-05-14 20:12:10 +0000
committerjbj <devnull@localhost>2001-05-14 20:12:10 +0000
commit3c563d21182b97271411e6b3209a07b6f78b94db (patch)
treef45cc7a4d00a6816221633467493482b6bd585ad /db3
parenta9184b73ecb9bcb5dedb503529a0696cdb5b008a (diff)
downloadrpm-3c563d21182b97271411e6b3209a07b6f78b94db.tar.gz
rpm-3c563d21182b97271411e6b3209a07b6f78b94db.tar.bz2
rpm-3c563d21182b97271411e6b3209a07b6f78b94db.zip
- upgrade to db-3.3.4.
CVS patchset: 4787 CVS date: 2001/05/14 20:12:10
Diffstat (limited to 'db3')
-rw-r--r--db3/.cvsignore20
-rwxr-xr-xdb3/configure11
2 files changed, 28 insertions, 3 deletions
diff --git a/db3/.cvsignore b/db3/.cvsignore
index 8a13c4f2e..696093e50 100644
--- a/db3/.cvsignore
+++ b/db3/.cvsignore
@@ -24,4 +24,22 @@ db_recover
db_stat
db_upgrade
db_verify
-db_lib_objs
+db3libobjs
+db_ext.h
+btree_ext.h
+clib_ext.h
+common_ext.h
+db_server.h
+env_ext.h
+hash_ext.h
+lock_ext.h
+log_ext.h
+mp_ext.h
+mutex_ext.h
+os_ext.h
+qam_ext.h
+rpc_client_ext.h
+rpc_server_ext.h
+tcl_ext.h
+txn_ext.h
+xa_ext.h
diff --git a/db3/configure b/db3/configure
index abb849512..f72150282 100755
--- a/db3/configure
+++ b/db3/configure
@@ -3,14 +3,21 @@
db_dist="../db/dist"
rm -f config.cache
+
+# XXX hack to get db-3.3.4 to configure properly
+ln -sf ../dist $db_dist/dist
+
CFALGS="-O2" $db_dist/configure \
- $(echo $* | sed -e "s% --cache-file=.*$% --enable-shared --enable-static --enable-debug --enable-rpc --srcdir=$db_dist%")
+ $(echo $* | sed -e "s% --cache-file=.*$% --enable-shared --enable-static --enable-debug --enable-rpc --with-uniquename=rpmdb --srcdir=$db_dist%")
+
+# XXX hack to get db-3.3.4 to configure properly
+rm -f $db_dist/dist
mv Makefile Makefile.orig
cat Makefile.orig | sed -e 's/ -g$/ -g -O2/' -e '/^install:/c\
.PHONY: listobjs\
listobjs:\
- @echo $(OBJS)\
+ @echo $(OBJS) $(C_OBJS) \
\
distdir install:\
\