Use substitition variables in xcb-xinerama.pc.in, not instances of their values
xcb-xinerama.pc.in looked more like a generated .pc file; replace specific
instances of values provided by an invocation of configure with the general
substitution variables configure replaces.
(cherry picked from commit 98e2a5617e
)
This commit is contained in:
parent
978e8839cb
commit
a27bafa29a
|
@ -9,6 +9,8 @@ libxcb (1.0-1) experimental; urgency=low
|
||||||
* Add XS-Vcs-Git field.
|
* Add XS-Vcs-Git field.
|
||||||
* Cherry-pick post-1.0 changes from master:
|
* Cherry-pick post-1.0 changes from master:
|
||||||
* "NetBSD doesn't have AI_ADDRCONFIG: use it only if it's available."
|
* "NetBSD doesn't have AI_ADDRCONFIG: use it only if it's available."
|
||||||
|
* "Use substitition variables in xcb-xinerama.pc.in, not instances of their
|
||||||
|
values"
|
||||||
|
|
||||||
-- Josh Triplett <josh@freedesktop.org> Fri, 24 Nov 2006 00:51:41 -0800
|
-- Josh Triplett <josh@freedesktop.org> Fri, 24 Nov 2006 00:51:41 -0800
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
prefix=/opt/fdo/
|
prefix=@prefix@
|
||||||
exec_prefix=${prefix}
|
exec_prefix=@exec_prefix@
|
||||||
libdir=${exec_prefix}/lib
|
libdir=@libdir@
|
||||||
includedir=${prefix}/include
|
includedir=@includedir@
|
||||||
|
|
||||||
Name: XCB Xinerama
|
Name: XCB Xinerama
|
||||||
Description: XCB Xinerama Extension
|
Description: XCB Xinerama Extension
|
||||||
Version: 0.9.92
|
Version: @PACKAGE_VERSION@
|
||||||
Requires: xcb
|
Requires: xcb
|
||||||
Libs: -L${libdir} -lxcb-xinerama
|
Libs: -L${libdir} -lxcb-xinerama
|
||||||
Cflags: -I${includedir}
|
Cflags: -I${includedir}
|
||||||
|
|
Loading…
Reference in New Issue