summaryrefslogtreecommitdiff
path: root/db3
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-05-11 04:01:04 +0000
committerjbj <devnull@localhost>2001-05-11 04:01:04 +0000
commitc7ee57336766b4411f3aeaaa78dd3778cfea3244 (patch)
tree628669756123446e12df3962c0d77db02551521f /db3
parentdda243d6621372bf8c10bc04643e730d9e388091 (diff)
downloadlibrpm-tizen-c7ee57336766b4411f3aeaaa78dd3778cfea3244.tar.gz
librpm-tizen-c7ee57336766b4411f3aeaaa78dd3778cfea3244.tar.bz2
librpm-tizen-c7ee57336766b4411f3aeaaa78dd3778cfea3244.zip
- rpm database has rpm.rpm g+w permissions to share db3 mutexes.
- expose more db3 macro configuration tokens. - move fprint.[ch] and hash.[ch] to rpmdb directory. - detect and fiddle incompatible mixtures of db3 env/open flags. - add DBI_WRITECURSOR to map to db3 flags with CDB database model. - add rpmdbSetIteratorRewrite to warn of pending lazy (re-)writes. CVS patchset: 4765 CVS date: 2001/05/11 04:01:04
Diffstat (limited to 'db3')
-rwxr-xr-xdb3/configure10
1 files changed, 5 insertions, 5 deletions
diff --git a/db3/configure b/db3/configure
index 16f8f8e66..3128c6f39 100755
--- a/db3/configure
+++ b/db3/configure
@@ -1,11 +1,13 @@
#!/bin/sh
#set -x
db_dist="../db/dist"
-CFLAGS="$CFLAGS" $db_dist/configure \
- $(echo $* | sed -e "s% --srcdir=[^ ]*% --enable-shared --enable-static --srcdir=$db_dist%")
+
+rm -f config.cache
+CFALGS="-O2" $db_dist/configure \
+ $(echo $* | sed -e "s% --cache-file=.*$% --enable-shared --enable-static --enable-debug --enable-rpc --srcdir=$db_dist%")
mv Makefile Makefile.orig
-cat Makefile.orig | sed -e '/^install:/c\
+cat Makefile.orig | sed -e 's/ -g$/ -g -O2/' -e '/^install:/c\
.PHONY: listobjs\
listobjs:\
@echo $(OBJS)\
@@ -13,5 +15,3 @@ listobjs:\
distdir install:\
\
db3_install: all install_setip \\' > Makefile
-
-make -s listobjs > db3lobjs