diff options
author | jbj <devnull@localhost> | 2002-07-20 21:07:31 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-07-20 21:07:31 +0000 |
commit | 293a81e2590888951a1341341eb3ff034b8a0406 (patch) | |
tree | 8487800311da40f2e1e9f57463e78d65b5d39247 /rpmdb | |
parent | bfb8488c10a5dfccbcb7c556408b300f8901cd88 (diff) | |
download | rpm-293a81e2590888951a1341341eb3ff034b8a0406.tar.gz rpm-293a81e2590888951a1341341eb3ff034b8a0406.tar.bz2 rpm-293a81e2590888951a1341341eb3ff034b8a0406.zip |
- version added to *.la dependency libraries (#69063).
- expose digests in rpmio API, but hide internal beecrypt API (#68999).
CVS patchset: 5561
CVS date: 2002/07/20 21:07:31
Diffstat (limited to 'rpmdb')
-rw-r--r-- | rpmdb/Makefile.am | 2 | ||||
-rw-r--r-- | rpmdb/rpmdb.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/rpmdb/Makefile.am b/rpmdb/Makefile.am index 90f7f7fb3..7fdc485a0 100644 --- a/rpmdb/Makefile.am +++ b/rpmdb/Makefile.am @@ -49,7 +49,7 @@ dbconfig.c: db.h # XXX Add internal libtool dependence install-data-local: @cd $(DESTDIR)/$(libdir) && \ - sed -e "s|^dependency_libs='|& -lrpmio|" < librpmdb.la > .librpmdb.la && \ + sed -e "s|^dependency_libs='|& -lrpmio-@VERSION@|" < librpmdb.la > .librpmdb.la && \ mv .librpmdb.la librpmdb.la tagtbl.c: Makefile.am $(top_srcdir)/lib/rpmlib.h diff --git a/rpmdb/rpmdb.c b/rpmdb/rpmdb.c index ecb991bea..5da9ca88f 100644 --- a/rpmdb/rpmdb.c +++ b/rpmdb/rpmdb.c @@ -33,10 +33,8 @@ extern void regfree (/*@only@*/ regex_t *preg) /*@=declundef =exportheader @*/ #endif -#include <rpmio.h> -#include <rpmpgp.h> +#include <rpmio_internal.h> #include <rpmmacro.h> -#include <rpmurl.h> #include "rpmdb.h" #include "fprint.h" |