(!1654) Xnest: add xcb and x11-xcb as dependency
In order to transition to XCB, we need to link xcb, but temporarily also x11-xcb. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
cdc18a6013
commit
d85d6e7dfb
|
@ -71,6 +71,7 @@ typedef XID KeySym64;
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
#include <X11/extensions/shape.h>
|
#include <X11/extensions/shape.h>
|
||||||
|
#include <X11/Xlib-xcb.h>
|
||||||
#undef GC
|
#undef GC
|
||||||
|
|
||||||
#ifdef _XSERVER64_tmp
|
#ifdef _XSERVER64_tmp
|
||||||
|
|
|
@ -19,6 +19,9 @@ srcs = [
|
||||||
'../../mi/miinitext.h',
|
'../../mi/miinitext.h',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
x11_xcb_dep = dependency('x11-xcb', required: true)
|
||||||
|
xcb_dep = dependency('xcb', required: true)
|
||||||
|
|
||||||
executable(
|
executable(
|
||||||
'Xnest',
|
'Xnest',
|
||||||
srcs,
|
srcs,
|
||||||
|
@ -26,6 +29,8 @@ executable(
|
||||||
dependencies: [
|
dependencies: [
|
||||||
common_dep,
|
common_dep,
|
||||||
xnest_dep,
|
xnest_dep,
|
||||||
|
xcb_dep,
|
||||||
|
x11_xcb_dep,
|
||||||
],
|
],
|
||||||
link_with: [
|
link_with: [
|
||||||
libxserver_main,
|
libxserver_main,
|
||||||
|
|
Loading…
Reference in New Issue