diff options
author | jbj <devnull@localhost> | 2002-10-18 18:45:47 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-10-18 18:45:47 +0000 |
commit | 4a77efce46d82f91c0539c3c012381ff20d0d2f5 (patch) | |
tree | 24d53844d29f688f1cd2577f7efd521f0917a3a3 /rpmdb | |
parent | 71f563826d0155b77165230cf90a2739d7d2f679 (diff) | |
download | rpm-4a77efce46d82f91c0539c3c012381ff20d0d2f5.tar.gz rpm-4a77efce46d82f91c0539c3c012381ff20d0d2f5.tar.bz2 rpm-4a77efce46d82f91c0539c3c012381ff20d0d2f5.zip |
- add debug sub-package patch.
- re-add elfutils/libdwarf (for dwarf.h), eliminate tools/dwarf2.h.
CVS patchset: 5789
CVS date: 2002/10/18 18:45:47
Diffstat (limited to 'rpmdb')
-rw-r--r-- | rpmdb/header.h | 4 | ||||
-rw-r--r-- | rpmdb/legacy.c | 4 | ||||
-rw-r--r-- | rpmdb/rpmdb.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/rpmdb/header.h b/rpmdb/header.h index a3f69a4dc..625b9abda 100644 --- a/rpmdb/header.h +++ b/rpmdb/header.h @@ -78,7 +78,7 @@ /* RPM - Copyright (C) 1995-2001 Red Hat Software */ #include <stdio.h> -#include <rpmio.h> +#include "rpmio.h" #ifdef __cplusplus extern "C" { @@ -717,7 +717,7 @@ void * headerFreeData( /*@only@*/ /*@null@*/ const void * data, rpmTagType type) } #if !defined(__HEADER_PROTOTYPES__) -#include <hdrinline.h> +#include "hdrinline.h" #endif #ifdef __cplusplus diff --git a/rpmdb/legacy.c b/rpmdb/legacy.c index 3568de9e0..11f5340ee 100644 --- a/rpmdb/legacy.c +++ b/rpmdb/legacy.c @@ -4,7 +4,7 @@ #include "system.h" -#if HAVE_LIBELF_GELF_H +#if HAVE_GELF_H #include <gelf.h> @@ -68,7 +68,7 @@ static int open_dso(const char * path, /*@null@*/ pid_t * pidp, /*@null@*/ size_ return fdno; /*@=boundsread@*/ -#if HAVE_LIBELF_GELF_H && HAVE_LIBELF +#if HAVE_GELF_H && HAVE_LIBELF { Elf *elf = NULL; Elf_Scn *scn = NULL; Elf_Data *data = NULL; diff --git a/rpmdb/rpmdb.h b/rpmdb/rpmdb.h index 197a7b1cf..7b242c79c 100644 --- a/rpmdb/rpmdb.h +++ b/rpmdb/rpmdb.h @@ -8,8 +8,8 @@ */ #include <assert.h> -#include <rpmlib.h> -#include <db.h> +#include "rpmlib.h" +#include "db.h" /*@-exportlocal@*/ /*@unchecked@*/ |