Bug 7423

Summary: The file /usr/include/rpm/rpmlib.h is not correct
Product: [Retired] Red Hat Linux Reporter: bpinaud
Component: rpmAssignee: Jeff Johnson <jbj>
Status: CLOSED NOTABUG QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.1CC: bradley
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-11-30 13:26:54 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description bpinaud 1999-11-29 22:31:11 UTC
On my frech install of the RH6.1, the file beginning of the file
/usr/include/rpm/rpmlib.h is :

...
#include <rpmio.h>
#include <dbindex.h>
#include <header.h>
#include <popt.h>

and it should be

...
#include <rpm/rpmio.h>
#include <rpm/dbindex.h>
#include <rpm/header.h>
#include <popt.h>

because gcc said said that it could not find rpmio.h, dbindex.h and
header.h

Comment 1 Jeff Johnson 1999-11-30 13:26:59 UTC
Add -I/usr/include/rpm to your CFLAGS.

Comment 2 Kuszmaul, Bradley 2001-06-19 18:56:13 UTC
I believe that this is still a bug.  The maximum rpm book says to write
 #include <rpm/rpmlib.h>
but then the header files don't work unless I write -I/usr/include/rpm in which
case I could have written
 #include <rpmlib.h>

And what if I am writing something that wants to use another package that has a
header.h file in its include path somewhere.  (E.g. /usr/include/pci/header.h)
In that case I could end up with a collision.