The libelf and libdw uses pkginclude_HEADERS but the pkg-config file misses to have it the Cflags. This was a problem for libdw users since it gave nothing to include, but one needs to add /usr/include/elfutils directory to use the libdw.h header file.
Signed-off-by: Namhyung Kim <namhy...@gmail.com> --- config/ChangeLog | 4 ++++ config/libdw.pc.in | 2 +- config/libelf.pc.in | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/config/ChangeLog b/config/ChangeLog index ae40cc07..be3f87fb 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2017-12-08 Namhyung Kim <namhy...@gmail.com> + * libelf.pc.in: Add pkgincludedir to Cflags. + * libdw.pc.in: Likewise + 2017-11-02 Mark Wielaard <m...@klomp.org> * elfutils.spec.in: Config files under /usr/lib/sysctl.d (_sysctldir) diff --git a/config/libdw.pc.in b/config/libdw.pc.in index 3fc283db..e2a083e9 100644 --- a/config/libdw.pc.in +++ b/config/libdw.pc.in @@ -9,7 +9,7 @@ Version: @VERSION@ URL: http://elfutils.org/ Libs: -L${libdir} -ldw -Cflags: -I${includedir} +Cflags: -I${includedir} -I${includedir}/elfutils # We need the exact matching elfutils libelf version since internal data # structures are used. diff --git a/config/libelf.pc.in b/config/libelf.pc.in index 48f3f021..5455577c 100644 --- a/config/libelf.pc.in +++ b/config/libelf.pc.in @@ -9,6 +9,6 @@ Version: @VERSION@ URL: http://elfutils.org/ Libs: -L${libdir} -lelf -Cflags: -I${includedir} +Cflags: -I${includedir} -I${includedir}/elfutils Requires.private: zlib -- 2.15.1