1 m4_define([weston_major_version], [1])
2 m4_define([weston_minor_version], [3])
3 m4_define([weston_micro_version], [90])
4 m4_define([weston_version],
5 [weston_major_version.weston_minor_version.weston_micro_version])
10 [https://bugs.freedesktop.org/enter_bug.cgi?product=Wayland&component=weston&version=weston_version],
12 [http://wayland.freedesktop.org/])
14 AC_SUBST([WESTON_VERSION_MAJOR], [weston_major_version])
15 AC_SUBST([WESTON_VERSION_MINOR], [weston_minor_version])
16 AC_SUBST([WESTON_VERSION_MICRO], [weston_micro_version])
17 AC_SUBST([WESTON_VERSION], [weston_version])
19 AC_CONFIG_HEADERS([config.h])
21 AC_USE_SYSTEM_EXTENSIONS
24 AM_INIT_AUTOMAKE([1.11 parallel-tests foreign no-dist-gzip dist-xz color-tests])
26 AM_SILENT_RULES([yes])
34 LT_INIT([disable-static])
36 AC_ARG_VAR([WESTON_NATIVE_BACKEND],
37 [Set the native backend to use, if Weston is not running under Wayland nor X11. @<:@default=drm-backend.so@:>@])
38 AC_ARG_VAR([WESTON_SHELL_CLIENT],
39 [Set the default desktop shell client to load if none is specified in weston.ini. @<:@default=weston-desktop-shell@:>@])
43 AC_CHECK_FUNC([dlopen], [],
44 AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
47 AC_CHECK_DECL(SFD_CLOEXEC,[],
48 [AC_MSG_ERROR("SFD_CLOEXEC is needed to compile weston")],
49 [[#include <sys/signalfd.h>]])
50 AC_CHECK_DECL(TFD_CLOEXEC,[],
51 [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile weston")],
52 [[#include <sys/timerfd.h>]])
53 AC_CHECK_DECL(CLOCK_MONOTONIC,[],
54 [AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile weston")],
55 [[#include <time.h>]])
56 AC_CHECK_HEADERS([execinfo.h])
58 AC_CHECK_FUNCS([mkostemp strchrnul initgroups posix_fallocate])
60 COMPOSITOR_MODULES="wayland-server >= 1.3.90 pixman-1"
62 AC_ARG_ENABLE(egl, [ --disable-egl],,
64 AM_CONDITIONAL(ENABLE_EGL, test x$enable_egl = xyes)
65 if test x$enable_egl = xyes; then
66 AC_DEFINE([ENABLE_EGL], [1], [Build Weston with EGL support])
67 PKG_CHECK_MODULES(EGL, [egl >= 7.10 glesv2])
68 PKG_CHECK_MODULES([EGL_TESTS], [egl >= 7.10 glesv2 wayland-client wayland-egl])
71 AC_ARG_ENABLE(xkbcommon,
72 AS_HELP_STRING([--disable-xkbcommon], [Disable libxkbcommon
73 support: This is only useful in environments
74 where you do not have a hardware keyboard. If
75 libxkbcommon support is disabled clients will not
76 be sent a keymap and and must know how to
77 interpret the keycode sent for any key event.]),,
79 if test x$enable_xkbcommon = xyes; then
80 AC_DEFINE(ENABLE_XKBCOMMON, [1], [Build Weston with libxkbcommon support])
81 COMPOSITOR_MODULES="$COMPOSITOR_MODULES xkbcommon >= 0.3.0"
84 AC_ARG_ENABLE(setuid-install, [ --enable-setuid-install],,
85 enable_setuid_install=yes)
86 AM_CONDITIONAL(ENABLE_SETUID_INSTALL, test x$enable_setuid_install = xyes)
89 AC_ARG_ENABLE(xwayland, [ --enable-xwayland],,
91 AC_ARG_ENABLE(xwayland-test, [ --enable-xwayland-test],,
92 enable_xwayland_test=yes)
93 AM_CONDITIONAL(ENABLE_XWAYLAND, test x$enable_xwayland = xyes)
94 AM_CONDITIONAL(ENABLE_XWAYLAND_TEST, test x$enable_xwayland = xyes -a x$enable_xwayland_test = xyes)
95 if test x$enable_xwayland = xyes; then
96 PKG_CHECK_MODULES([XWAYLAND], xcb xcb-xfixes xcb-composite xcursor cairo-xcb)
97 AC_DEFINE([BUILD_XWAYLAND], [1], [Build the X server launcher])
99 AC_ARG_WITH(xserver-path, AS_HELP_STRING([--with-xserver-path=PATH],
100 [Path to X server]), [XSERVER_PATH="$withval"],
101 [XSERVER_PATH="$bindir/Xorg"])
102 AC_SUBST([XSERVER_PATH])
103 if test x$enable_xwayland_test = xyes; then
104 PKG_CHECK_MODULES([XWAYLAND_TEST], xcb xcb-dri2 libdrm)
108 PKG_CHECK_MODULES(LIBDRM, [libdrm],
109 [AC_DEFINE(HAVE_LIBDRM, 1, [Define if libdrm is available]) have_libdrm=yes], have_libdrm=no)
111 AC_ARG_ENABLE(x11-compositor, [ --enable-x11-compositor],,
112 enable_x11_compositor=yes)
113 AM_CONDITIONAL(ENABLE_X11_COMPOSITOR, test x$enable_x11_compositor = xyes)
114 if test x$enable_x11_compositor = xyes; then
115 PKG_CHECK_MODULES([XCB], xcb)
117 xcb_save_CFLAGS=$CFLAGS
120 AC_CHECK_FUNCS([xcb_poll_for_queued_event])
122 CFLAGS=$xcb_save_CFLAGS
124 X11_COMPOSITOR_MODULES="x11 x11-xcb xcb-shm"
126 PKG_CHECK_MODULES(X11_COMPOSITOR_XKB, [xcb-xkb],
127 [have_xcb_xkb="yes"], [have_xcb_xkb="no"])
128 if test "x$have_xcb_xkb" = xyes; then
129 # Most versions of XCB have totally broken XKB bindings, where the
130 # events don't work. Make sure we can actually use them.
131 xcb_xkb_save_CFLAGS=$CFLAGS
132 CFLAGS=$X11_COMPOSITOR_XKB_CFLAGS
133 AC_CHECK_MEMBER([struct xcb_xkb_state_notify_event_t.xkbType],
134 [], [have_xcb_xkb=no], [[#include <xcb/xkb.h>]])
135 CFLAGS=$xcb_xkb_save_CFLAGS
137 if test "x$have_xcb_xkb" = xyes; then
138 X11_COMPOSITOR_MODULES="$X11_COMPOSITOR_MODULES xcb-xkb"
139 AC_DEFINE([HAVE_XCB_XKB], [1], [libxcb supports XKB protocol])
142 PKG_CHECK_MODULES(X11_COMPOSITOR, [$X11_COMPOSITOR_MODULES])
143 AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor])
147 AC_ARG_ENABLE(drm-compositor, [ --enable-drm-compositor],,
148 enable_drm_compositor=yes)
149 AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor = xyes)
150 if test x$enable_drm_compositor = xyes; then
151 AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
152 PKG_CHECK_MODULES(DRM_COMPOSITOR, [libudev >= 136 libdrm >= 2.4.30 gbm mtdev >= 1.1.0])
155 PKG_CHECK_MODULES(COMPOSITOR, [$COMPOSITOR_MODULES])
157 AC_ARG_ENABLE(wayland-compositor, [ --enable-wayland-compositor],,
158 enable_wayland_compositor=yes)
159 AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
160 test x$enable_wayland_compositor = xyes -a x$enable_egl = xyes)
161 if test x$enable_wayland_compositor = xyes -a x$enable_egl = xyes; then
162 AC_DEFINE([BUILD_WAYLAND_COMPOSITOR], [1],
163 [Build the Wayland (nested) compositor])
164 PKG_CHECK_MODULES(WAYLAND_COMPOSITOR, [wayland-client wayland-egl wayland-cursor])
168 AC_ARG_ENABLE(headless-compositor, [ --enable-headless-compositor],,
169 enable_headless_compositor=yes)
170 AM_CONDITIONAL(ENABLE_HEADLESS_COMPOSITOR,
171 test x$enable_headless_compositor = xyes)
174 AC_ARG_ENABLE(rpi-compositor,
175 AS_HELP_STRING([--disable-rpi-compositor],
176 [do not build the Raspberry Pi backend]),,
177 enable_rpi_compositor=yes)
178 AM_CONDITIONAL(ENABLE_RPI_COMPOSITOR, test "x$enable_rpi_compositor" = "xyes")
180 if test "x$enable_rpi_compositor" = "xyes"; then
181 AC_DEFINE([BUILD_RPI_COMPOSITOR], [1], [Build the compositor for Raspberry Pi])
182 PKG_CHECK_MODULES(RPI_COMPOSITOR, [libudev >= 136 mtdev >= 1.1.0])
183 PKG_CHECK_MODULES(RPI_BCM_HOST, [bcm_host],
185 AC_DEFINE([HAVE_BCM_HOST], [1], [have Raspberry Pi BCM headers])],
186 [AC_MSG_WARN([Raspberry Pi BCM host libraries not found, will use stubs instead.])])
188 AM_CONDITIONAL(INSTALL_RPI_COMPOSITOR, test "x$have_bcm_host" = "xyes")
191 AC_ARG_ENABLE([fbdev-compositor], [ --enable-fbdev-compositor],,
192 enable_fbdev_compositor=yes)
193 AM_CONDITIONAL([ENABLE_FBDEV_COMPOSITOR],
194 [test x$enable_fbdev_compositor = xyes])
195 AS_IF([test x$enable_fbdev_compositor = xyes], [
196 AC_DEFINE([BUILD_FBDEV_COMPOSITOR], [1], [Build the fbdev compositor])
197 PKG_CHECK_MODULES([FBDEV_COMPOSITOR], [libudev >= 136 mtdev >= 1.1.0])
200 AC_ARG_ENABLE([rdp-compositor], [ --enable-rdp-compositor],,
201 enable_rdp_compositor=no)
202 AM_CONDITIONAL([ENABLE_RDP_COMPOSITOR],
203 [test x$enable_rdp_compositor = xyes])
204 if test x$enable_rdp_compositor = xyes; then
205 AC_DEFINE([BUILD_RDP_COMPOSITOR], [1], [Build the RDP compositor])
206 PKG_CHECK_MODULES(RDP_COMPOSITOR, [freerdp >= 1.1.0])
210 AS_HELP_STRING([--with-cairo=@<:@image|gl|glesv2@:>@]
211 [Which Cairo renderer to use for the clients]),
212 [],[with_cairo="image"])
214 if test "x$with_cairo" = "ximage"; then
215 cairo_modules="cairo"
217 if test "x$with_cairo" = "xgl"; then
218 cairo_modules="cairo-gl"
220 if test "x$with_cairo" = "xglesv2"; then
221 cairo_modules="cairo-glesv2"
223 AC_ERROR([Unknown cairo renderer requested])
228 # Included for legacy compat
229 AC_ARG_WITH(cairo-glesv2,
230 AS_HELP_STRING([--with-cairo-glesv2],
232 if test "x$with_cairo_glesv2" = "xyes"; then
233 cairo_modules="cairo-glesv2"
237 if test "x$cairo_modules" = "xcairo-glesv2"; then
238 AC_DEFINE([USE_CAIRO_GLESV2], [1], [Use the GLESv2 GL cairo backend])
241 PKG_CHECK_MODULES(PIXMAN, [pixman-1])
242 PKG_CHECK_MODULES(PNG, [libpng])
243 PKG_CHECK_MODULES(WEBP, [libwebp], [have_webp=yes], [have_webp=no])
244 AS_IF([test "x$have_webp" = "xyes"],
245 [AC_DEFINE([HAVE_WEBP], [1], [Have webp])])
247 AC_ARG_ENABLE(vaapi-recorder, [ --enable-vaapi-recorder],,
248 enable_vaapi_recorder=auto)
249 if test x$enable_vaapi_recorder != xno; then
250 PKG_CHECK_MODULES(LIBVA, [libva >= 0.34.0 libva-drm >= 0.34.0],
251 [have_libva=yes], [have_libva=no])
252 if test "x$have_libva" = "xno" -a "x$enable_vaapi_recorder" = "xyes"; then
253 AC_MSG_ERROR([vaapi-recorder explicitly enabled, but libva couldn't be found])
255 AS_IF([test "x$have_libva" = "xyes"],
256 [AC_DEFINE([BUILD_VAAPI_RECORDER], [1], [Build the vaapi recorder])])
258 AM_CONDITIONAL(ENABLE_VAAPI_RECORDER, test "x$have_libva" = xyes)
261 AC_CHECK_LIB([jpeg], [jpeg_CreateDecompress], have_jpeglib=yes)
262 if test x$have_jpeglib = xyes; then
265 AC_ERROR([libjpeg not found])
269 PKG_CHECK_MODULES(CAIRO, [cairo])
271 PKG_CHECK_MODULES(TEST_CLIENT, [wayland-client])
273 AC_ARG_ENABLE(simple-clients,
274 AS_HELP_STRING([--disable-simple-clients],
275 [do not build the simple wl_shm clients]),,
276 enable_simple_clients=yes)
277 AM_CONDITIONAL(BUILD_SIMPLE_CLIENTS, test "x$enable_simple_clients" = "xyes")
278 if test x$enable_simple_clients = xyes; then
279 PKG_CHECK_MODULES(SIMPLE_CLIENT, [wayland-client])
282 AC_ARG_ENABLE(simple-egl-clients,
283 AS_HELP_STRING([--disable-simple-egl-clients],
284 [do not build the simple EGL clients]),,
285 enable_simple_egl_clients="$enable_egl")
286 AM_CONDITIONAL(BUILD_SIMPLE_EGL_CLIENTS, test "x$enable_simple_egl_clients" = "xyes")
287 if test x$enable_simple_egl_clients = xyes; then
288 PKG_CHECK_MODULES(SIMPLE_EGL_CLIENT,
289 [egl >= 7.10 glesv2 wayland-client wayland-egl wayland-cursor])
292 AC_ARG_ENABLE(clients, [ --enable-clients],, enable_clients=yes)
293 AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients = xyes)
294 if test x$enable_clients = xyes; then
295 AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
297 PKG_CHECK_MODULES(CLIENT, [wayland-client cairo >= 1.10.0 xkbcommon wayland-cursor])
298 PKG_CHECK_MODULES(SERVER, [wayland-server])
299 PKG_CHECK_MODULES(WESTON_INFO, [wayland-client])
301 PKG_CHECK_MODULES(POPPLER, [poppler-glib glib-2.0 gobject-2.0 gio-2.0 ],
302 [have_poppler=yes], [have_poppler=no])
304 # Only check for cairo-egl if a GL or GLES renderer requested
305 AS_IF([test "x$cairo_modules" = "xcairo-gl" -o "x$cairo_modules" = "xcairo-glesv2"], [
306 PKG_CHECK_MODULES(CAIRO_EGL, [wayland-egl egl >= 7.10 cairo-egl >= 1.11.3 $cairo_modules],
307 [have_cairo_egl=yes], [have_cairo_egl=no])
308 AS_IF([test "x$have_cairo_egl" = "xyes"],
309 [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])],
310 [AC_ERROR([cairo-egl not used because $CAIRO_EGL_PKG_ERRORS])])],
313 PKG_CHECK_MODULES(PANGO, [pangocairo], [have_pango=yes], [have_pango=no])
316 AC_ARG_ENABLE(resize-optimization,
317 AS_HELP_STRING([--disable-resize-optimization],
318 [disable resize optimization allocating a big buffer in toytoolkit]),,
319 enable_resize_optimization=yes)
320 AS_IF([test "x$enable_resize_optimization" = "xyes"],
321 [AC_DEFINE([USE_RESIZE_POOL], [1], [Use resize memory pool as a performance optimization])])
323 PKG_CHECK_MODULES(SYSTEMD_LOGIN, [libsystemd-login],
324 [have_systemd_login=yes], [have_systemd_login=no])
325 AS_IF([test "x$have_systemd_login" = "xyes"],
326 [AC_DEFINE([HAVE_SYSTEMD_LOGIN], [1], [Have systemd-login])])
327 AM_CONDITIONAL(HAVE_SYSTEMD_LOGIN, test "x$have_systemd_login" = "xyes")
329 PKG_CHECK_MODULES(SYSTEMD_LOGIN_209, [libsystemd-login >= 209],
330 [have_systemd_login_209=yes], [have_systemd_login_209=no])
331 AS_IF([test "x$have_systemd_login_209" = "xyes"],
332 [AC_DEFINE([HAVE_SYSTEMD_LOGIN_209], [1], [Have systemd-login >= 209])])
334 AC_ARG_ENABLE(weston-launch, [ --enable-weston-launch],, enable_weston_launch=yes)
335 AM_CONDITIONAL(BUILD_WESTON_LAUNCH, test x$enable_weston_launch == xyes)
336 if test x$enable_weston_launch == xyes; then
337 AC_CHECK_LIB([pam], [pam_open_session], [have_pam=yes], [have_pam=no])
338 if test x$have_pam == xno; then
339 AC_ERROR([weston-launch requires pam])
345 if test x$enable_egl = xyes; then
346 PKG_CHECK_MODULES(GLU, [glu], [have_glu=yes], [have_glu=no])
348 AM_CONDITIONAL(HAVE_GLU, test "x$have_glu" = "xyes")
351 AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
353 AM_CONDITIONAL(HAVE_PANGO, test "x$have_pango" = "xyes")
355 AM_CONDITIONAL(HAVE_CAIRO_GLESV2,
356 [test "x$have_cairo_egl" = "xyes" -a "x$cairo_modules" = "xcairo-glesv2" -a "x$enable_egl" = "xyes"])
358 AM_CONDITIONAL(BUILD_FULL_GL_CLIENTS,
359 test x$cairo_modules = "xcairo-gl" -a "x$have_cairo_egl" = "xyes" -a "x$enable_egl" = "xyes")
361 AM_CONDITIONAL(BUILD_SUBSURFACES_CLIENT,
362 [test '(' "x$have_cairo_egl" != "xyes" -o "x$cairo_modules" = "xcairo-glesv2" ')' -a "x$enable_simple_egl_clients" = "xyes"])
364 AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true)
367 AC_ARG_ENABLE(colord,
368 AS_HELP_STRING([--disable-colord],
369 [do not build colord CMS support]),,
371 if test "x$enable_colord" != "xno"; then
372 PKG_CHECK_MODULES(COLORD,
376 if test "x$have_colord" = "xno" -a "x$enable_colord" = "xyes"; then
377 AC_MSG_ERROR([colord support explicitly requested, but colord couldn't be found])
379 if test "x$have_colord" = "xyes"; then
383 AM_CONDITIONAL(ENABLE_COLORD, test "x$enable_colord" = "xyes")
387 AS_HELP_STRING([--disable-dbus],
388 [do not build with dbus support]),,
390 if test "x$enable_dbus" != "xno"; then
391 PKG_CHECK_MODULES(DBUS,
395 if test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"; then
396 AC_MSG_ERROR([dbus support explicitly requested, but libdbus couldn't be found])
398 if test "x$have_dbus" = "xyes"; then
400 AC_DEFINE([HAVE_DBUS], [1], [Build with dbus support])
405 AM_CONDITIONAL(ENABLE_DBUS, test "x$enable_dbus" = "xyes")
407 AC_ARG_ENABLE(wcap-tools, [ --disable-wcap-tools],, enable_wcap_tools=yes)
408 AM_CONDITIONAL(BUILD_WCAP_TOOLS, test x$enable_wcap_tools = xyes)
409 if test x$enable_wcap_tools = xyes; then
410 AC_DEFINE([BUILD_WCAP_TOOLS], [1], [Build the wcap tools])
411 PKG_CHECK_MODULES(WCAP, [cairo])
412 WCAP_LIBS="$WCAP_LIBS -lm"
415 AC_CHECK_PROG(RSVG_CONVERT, rsvg-convert, rsvg-convert)
416 AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_CONVERT")
418 PKG_CHECK_MODULES(SETBACKLIGHT, [libudev libdrm], enable_setbacklight=yes, enable_setbacklight=no)
419 AM_CONDITIONAL(BUILD_SETBACKLIGHT, test "x$enable_setbacklight" = "xyes")
421 if test "x$GCC" = "xyes"; then
422 GCC_CFLAGS="-Wall -Wextra -Wno-unused-parameter \
423 -Wno-missing-field-initializers -g -fvisibility=hidden \
424 -Wstrict-prototypes -Wmissing-prototypes"
428 AC_ARG_ENABLE(libunwind,
429 AS_HELP_STRING([--disable-libunwind],
430 [Disable libunwind usage for backtraces]),,
431 enable_libunwind=auto)
432 AM_CONDITIONAL(HAVE_LIBUNWIND, [test "x$enable_libunwind" = xyes])
433 if test "x$enable_libunwind" != "xno"; then
434 PKG_CHECK_MODULES(LIBUNWIND,
438 if test "x$have_libunwind" = "xno" -a "x$enable_libunwind" = "xyes"; then
439 AC_MSG_ERROR([libunwind support explicitly requested, but libunwind couldn't be found])
441 if test "x$have_libunwind" = "xyes"; then
443 AC_DEFINE(HAVE_LIBUNWIND, 1, [Have libunwind support])
448 if test "x$WESTON_NATIVE_BACKEND" = "x"; then
449 WESTON_NATIVE_BACKEND="drm-backend.so"
451 AC_MSG_NOTICE([Weston's native backend: $WESTON_NATIVE_BACKEND])
452 AC_DEFINE_UNQUOTED([WESTON_NATIVE_BACKEND], ["$WESTON_NATIVE_BACKEND"],
453 [The default backend to load, if not wayland nor x11.])
455 if test "x$WESTON_SHELL_CLIENT" = "x"; then
456 WESTON_SHELL_CLIENT="weston-desktop-shell"
458 AC_MSG_NOTICE([Weston's default desktop shell client: $WESTON_SHELL_CLIENT])
459 AC_DEFINE_UNQUOTED([WESTON_SHELL_CLIENT], ["$WESTON_SHELL_CLIENT"],
460 [The default desktop shell client to load.])
462 AC_ARG_ENABLE(demo-clients,
463 AS_HELP_STRING([--enable-demo-clients],
464 [install demo clients built with weston]),,
465 enable_demo_clients=no)
466 AM_CONDITIONAL(ENABLE_DEMO_CLIENTS, [test "x$enable_demo_clients" = "xyes"])
468 PKG_CHECK_MODULES(LCMS, lcms2,
469 [have_lcms=yes], [have_lcms=no])
470 if test "x$have_lcms" = xyes; then
471 AC_DEFINE(HAVE_LCMS, 1, [Have lcms support])
473 AM_CONDITIONAL(HAVE_LCMS, [test "x$have_lcms" = xyes])
475 AC_PATH_PROG([wayland_scanner], [wayland-scanner])
476 if test x$wayland_scanner = x; then
477 AC_MSG_ERROR([wayland-scanner is needed to compile weston])
480 PKG_CHECK_MODULES(WAYLAND_SCANNER, wayland-scanner)
481 AC_PATH_PROG(XMLLINT, xmllint)
482 AC_ARG_WITH([dtddir],
483 AS_HELP_STRING([--with-dtddir],
484 [Directory containing the Wayland
485 protocol DTD @<:@default=from pkgconfig@:>@]),
487 [dtddir=$($PKG_CONFIG --variable=pkgdatadir wayland-scanner)])
489 AM_CONDITIONAL([HAVE_XMLLINT], [test "x$XMLLINT" != "x" -a "x$dtddir" != "x"])
491 AC_CONFIG_FILES([Makefile
495 desktop-shell/Makefile
507 Native Backend ${WESTON_NATIVE_BACKEND}
508 setuid Install ${enable_setuid_install}
510 Cairo Renderer ${with_cairo}
512 libxkbcommon ${enable_xkbcommon}
513 xcb_xkb ${have_xcb_xkb}
514 XWayland ${enable_xwayland}
517 Build wcap utility ${enable_wcap_tools}
519 weston-launch utility ${enable_weston_launch}
520 systemd-login support ${have_systemd_login}
522 DRM Compositor ${enable_drm_compositor}
523 X11 Compositor ${enable_x11_compositor}
524 Wayland Compositor ${enable_wayland_compositor}
525 Headless Compositor ${enable_headless_compositor}
526 RPI Compositor ${enable_rpi_compositor}
527 FBDEV Compositor ${enable_fbdev_compositor}
528 RDP Compositor ${enable_rdp_compositor}
530 Raspberry Pi BCM headers ${have_bcm_host}
532 Build Clients ${enable_clients}
533 Build EGL Clients ${have_cairo_egl}
534 Build Simple Clients ${enable_simple_clients}
535 Build Simple EGL Clients ${enable_simple_egl_clients}
537 Install Demo Clients ${enable_demo_clients}
539 Colord Support ${have_colord}
540 GLU Support ${have_glu}
541 LCMS2 Support ${have_lcms}
542 libwebp Support ${have_webp}
543 libunwind Support ${have_libunwind}
544 VA H.264 encoding Support ${have_libva}