diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2014-09-05 01:46:40 +0100 |
---|---|---|
committer | Uli Schlachter <psychon@znc.in> | 2014-10-03 23:53:54 +0200 |
commit | 382d306d6c44a9ece5551c210a932773b5cb94a5 (patch) | |
tree | c62697721384c02e88835d8fb6c72be67dc80433 /xcb-xtest.pc.in | |
parent | b0e6c2de09c7474868dd7185674fa113a5c2e0aa (diff) |
Move internal/private dependencies to Requires.private
Program using the xcb sub-modules has indirect compile and runtime
dependency of core xcb. To ensure this out we currently list xcb in
the Requires field of the pkg-config files. While this provides all
the required dependencies for successful compilation this causes
over-linking and hides potential linking miss-use against the xcb modules.
By moving to Requires.private we retain the compilation and runtime
compatibility and avoids any runtime problems.
Cc: Keith Packard <keithp@keithp.com>
Cc: Alan Coopersmith <alan.coopersmith@oracle.com>
References: http://people.freedesktop.org/~dbn/pkg-config-guide.html#faq
References: https://wiki.mageia.org/en/Overlinking_issues_in_packaging
References: http://err.no/personal/blog/2008/Mar/25
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Uli Schlachter <psychon@znc.in>
Diffstat (limited to 'xcb-xtest.pc.in')
-rw-r--r-- | xcb-xtest.pc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xcb-xtest.pc.in b/xcb-xtest.pc.in index 886c4dc..9961152 100644 --- a/xcb-xtest.pc.in +++ b/xcb-xtest.pc.in @@ -6,6 +6,6 @@ includedir=@includedir@ Name: XCB XTEST Description: XCB XTEST Extension Version: @PACKAGE_VERSION@ -Requires: xcb +Requires.private: xcb Libs: -L${libdir} -lxcb-xtest Cflags: -I${includedir} |