daf01a38be
xlib_libxshmfence is mandatory, not optional, since the addition of the
package in commit 05c3177493
:
../miext/sync/misyncshm.c:36:10: fatal error: X11/xshmfence.h: No such file or directory
36 | #include <X11/xshmfence.h>
| ^~~~~~~~~~~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/cccc8f97d452ed2adbcbc4624f159a00287a3d38
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_XWAYLAND
|
|
bool "xwayland server"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS # wayland
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # wayland
|
|
# We need a SHA1 implementation. If either openssl or
|
|
# libgcrypt are already part of the build, we'll use one of
|
|
# them, otherwise, use the small libsha1 library.
|
|
depends on !BR2_RISCV_32 # xlib_libxshmfence
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # xlib_libxshmfence
|
|
select BR2_PACKAGE_LIBSHA1 if (!BR2_PACKAGE_OPENSSL && !BR2_PACKAGE_LIBGCRYPT)
|
|
select BR2_PACKAGE_PIXMAN
|
|
select BR2_PACKAGE_WAYLAND
|
|
select BR2_PACKAGE_WAYLAND_PROTOCOLS
|
|
select BR2_PACKAGE_XLIB_LIBXCVT
|
|
select BR2_PACKAGE_XLIB_LIBXFONT2
|
|
select BR2_PACKAGE_XLIB_LIBXKBFILE
|
|
select BR2_PACKAGE_XLIB_LIBXRANDR
|
|
select BR2_PACKAGE_XLIB_LIBXSHMFENCE
|
|
select BR2_PACKAGE_XLIB_XTRANS
|
|
select BR2_PACKAGE_XORGPROTO
|
|
help
|
|
X.Org X server to run X clients under wayland
|
|
|
|
http://xorg.freedesktop.org
|
|
|
|
comment "xwayland needs a toolchain w/ threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_RISCV_32
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|