1 m4_define([weston_major_version], [4])
2 m4_define([weston_minor_version], [0])
3 m4_define([weston_micro_version], [90])
4 m4_define([weston_version],
5 [weston_major_version.weston_minor_version.weston_micro_version])
6 m4_define([libweston_major_version], [5])
7 m4_define([libweston_minor_version], [0])
8 m4_define([libweston_patch_version], [0])
13 [https://gitlab.freedesktop.org/wayland/weston/issues/],
15 [https://wayland.freedesktop.org])
17 WAYLAND_PREREQ_VERSION="1.12.0"
19 AC_SUBST([WESTON_VERSION_MAJOR], [weston_major_version])
20 AC_SUBST([WESTON_VERSION_MINOR], [weston_minor_version])
21 AC_SUBST([WESTON_VERSION_MICRO], [weston_micro_version])
22 AC_SUBST([WESTON_VERSION], [weston_version])
23 AC_SUBST([LIBWESTON_MAJOR], [libweston_major_version])
24 # We use minor as current and age since on ABI/API break/removal we bump major
25 # so minor will be reset to 0.
26 m4_define([lt_current], [libweston_minor_version])
27 m4_define([lt_revision], [libweston_patch_version])
28 m4_define([lt_age], [libweston_minor_version])
29 AC_SUBST([LT_VERSION_INFO], [lt_current:lt_revision:lt_age])
31 AC_CONFIG_AUX_DIR([build-aux])
32 AC_CONFIG_HEADERS([config.h])
33 AC_CONFIG_MACRO_DIR([m4])
35 AC_USE_SYSTEM_EXTENSIONS
39 export CFLAGS="$CFLAGS -Werror"
43 AM_INIT_AUTOMAKE([1.11 parallel-tests foreign no-dist-gzip dist-xz color-tests subdir-objects])
45 AM_SILENT_RULES([yes])
47 # Check Weston and libweston version consistency
48 m4_if(m4_cmp(weston_micro_version, [90]), [-1],
51 dnl A final or stable release, not a pre-release:
52 dnl Weston and libweston versions must match.
53 m4_if(weston_version, libweston_major_version[.]libweston_minor_version[.]libweston_patch_version,
55 [AC_MSG_ERROR([Weston and libweston version mismatch for a final release])])
59 dnl libweston must be equal or greater than weston.
60 m4_case(m4_list_cmp([weston_major_version, weston_minor_version, weston_micro_version],
61 [libweston_major_version, libweston_minor_version, libweston_patch_version]),
63 dnl weston < libweston
64 dnl libweston must be weston_major+1.0.0
65 m4_if(m4_eval(weston_major_version+1)[.0.0],
66 libweston_major_version[.]libweston_minor_version[.]libweston_patch_version,
68 [AC_MSG_ERROR([libweston version is greater but not (weston_major+1).0.0])])
71 dnl weston == libweston, all ok
74 dnl weston > libweston, wrong
75 AC_MSG_ERROR([Weston version is greater than libweston.])
85 LT_INIT([disable-static])
87 AC_ARG_VAR([WESTON_NATIVE_BACKEND],
88 [Set the native backend to use, if Weston is not running under Wayland nor X11. @<:@default=drm-backend.so@:>@])
89 AC_ARG_VAR([WESTON_SHELL_CLIENT],
90 [Set the default desktop shell client to load if none is specified in weston.ini. @<:@default=weston-desktop-shell@:>@])
94 # Check for dlsym instead of dlopen because ASAN hijacks the latter
95 WESTON_SEARCH_LIBS([DL], [dl], [dlsym])
97 # In old glibc versions (< 2.17) clock_gettime() and clock_getres() are in librt
98 WESTON_SEARCH_LIBS([CLOCK_GETTIME], [rt], [clock_gettime])
99 WESTON_SEARCH_LIBS([CLOCK_GETRES], [rt], [clock_getres])
101 AC_CHECK_DECL(SFD_CLOEXEC,[],
102 [AC_MSG_ERROR("SFD_CLOEXEC is needed to compile weston")],
103 [[#include <sys/signalfd.h>]])
104 AC_CHECK_DECL(TFD_CLOEXEC,[],
105 [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile weston")],
106 [[#include <sys/timerfd.h>]])
107 AC_CHECK_DECL(CLOCK_MONOTONIC,[],
108 [AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile weston")],
109 [[#include <time.h>]])
110 AC_CHECK_HEADERS([execinfo.h])
112 AC_CHECK_FUNCS([mkostemp strchrnul initgroups posix_fallocate])
114 # check for libdrm as a build-time dependency only
115 # libdrm 2.4.30 introduced drm_fourcc.h.
116 PKG_CHECK_MODULES(LIBDRM, [libdrm >= 2.4.68], [], [AC_MSG_ERROR([
117 libdrm is a hard build-time dependency for libweston core,
118 but a sufficient version was not found. However, libdrm
119 is not a runtime dependency unless you have features
120 enabled that require it.])])
122 COMPOSITOR_MODULES="wayland-server >= $WAYLAND_PREREQ_VERSION pixman-1 >= 0.25.2"
124 AC_CONFIG_FILES([doc/doxygen/tools.doxygen doc/doxygen/tooldev.doxygen])
126 AC_ARG_ENABLE(devdocs,
127 AS_HELP_STRING([--disable-devdocs],
128 [do not enable building of developer documentation]),,
130 if test "x$enable_devdocs" != "xno"; then
131 AC_CHECK_PROGS([DOXYGEN], [doxygen])
132 if test "x$DOXYGEN" = "x" -a "x$enable_devdocs" = "xyes"; then
133 AC_MSG_ERROR([Developer documentation explicitly requested, but Doxygen couldn't be found])
135 if test "x$DOXYGEN" != "x"; then
141 AM_CONDITIONAL(ENABLE_DEVDOCS, test "x$enable_devdocs" = "xyes")
143 AC_ARG_ENABLE(egl, [ --disable-egl],,
145 AM_CONDITIONAL(ENABLE_EGL, test x$enable_egl = xyes)
146 if test x$enable_egl = xyes; then
147 AC_DEFINE([ENABLE_EGL], [1], [Build Weston with EGL support])
148 PKG_CHECK_MODULES(EGL, [egl glesv2])
149 PKG_CHECK_MODULES([EGL_TESTS], [egl glesv2 wayland-client wayland-egl])
150 AC_CHECK_HEADERS([linux/sync_file.h])
153 COMPOSITOR_MODULES="$COMPOSITOR_MODULES xkbcommon >= 0.3.0"
155 PKG_CHECK_MODULES(XKBCOMMON_COMPOSE, [xkbcommon >= 0.5.0],
156 [AC_DEFINE(HAVE_XKBCOMMON_COMPOSE, 1,
157 [Define if xkbcommon is 0.5.0 or newer])],true)
159 AC_ARG_ENABLE(setuid-install, [ --enable-setuid-install],,
160 enable_setuid_install=yes)
161 AM_CONDITIONAL(ENABLE_SETUID_INSTALL, test x$enable_setuid_install = xyes)
164 AC_ARG_ENABLE(xwayland, [ --enable-xwayland],,
166 AC_ARG_ENABLE(xwayland-test, [ --enable-xwayland-test],,
167 enable_xwayland_test=yes)
168 AM_CONDITIONAL(ENABLE_XWAYLAND, test x$enable_xwayland = xyes)
169 AM_CONDITIONAL(ENABLE_XWAYLAND_TEST, test x$enable_xwayland = xyes -a x$enable_xwayland_test = xyes)
170 if test x$enable_xwayland = xyes; then
171 PKG_CHECK_MODULES([XWAYLAND], xcb xcb-xfixes xcb-composite xcb-shape xcursor cairo-xcb)
172 AC_DEFINE([BUILD_XWAYLAND], [1], [Build the X server launcher])
174 AC_ARG_WITH(xserver-path, AS_HELP_STRING([--with-xserver-path=PATH],
175 [Path to X server]), [XSERVER_PATH="$withval"],
176 [XSERVER_PATH="/usr/bin/Xwayland"])
177 AC_SUBST([XSERVER_PATH])
178 if test x$enable_xwayland_test = xyes; then
179 PKG_CHECK_MODULES([XWAYLAND_TEST], x11)
183 AC_ARG_ENABLE(x11-compositor, [ --enable-x11-compositor],,
184 enable_x11_compositor=yes)
185 AM_CONDITIONAL(ENABLE_X11_COMPOSITOR, test x$enable_x11_compositor = xyes)
187 if test x$enable_x11_compositor = xyes; then
188 PKG_CHECK_MODULES([XCB], xcb >= 1.8)
189 X11_COMPOSITOR_MODULES="x11 x11-xcb xcb-shm"
191 PKG_CHECK_MODULES(X11_COMPOSITOR_XKB, [xcb-xkb >= 1.9],
192 [have_xcb_xkb="yes"], [have_xcb_xkb="no"])
193 if test "x$have_xcb_xkb" = xyes; then
194 X11_COMPOSITOR_MODULES="$X11_COMPOSITOR_MODULES xcb-xkb"
195 AC_DEFINE([HAVE_XCB_XKB], [1], [libxcb supports XKB protocol])
198 PKG_CHECK_MODULES(X11_COMPOSITOR, [$X11_COMPOSITOR_MODULES])
199 AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor])
203 AC_ARG_ENABLE(drm-compositor, [ --enable-drm-compositor],,
204 enable_drm_compositor=yes)
205 AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor = xyes)
206 if test x$enable_drm_compositor = xyes; then
207 AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
208 PKG_CHECK_MODULES(DRM_COMPOSITOR, [libudev >= 136 libdrm >= 2.4.30 gbm])
209 PKG_CHECK_MODULES(DRM_COMPOSITOR_ATOMIC, [libdrm >= 2.4.78],
210 [AC_DEFINE([HAVE_DRM_ATOMIC], 1, [libdrm supports atomic API])],
211 [AC_MSG_WARN([libdrm does not support atomic modesetting, will omit that capability])])
212 PKG_CHECK_MODULES(DRM_COMPOSITOR_GBM, [gbm >= 10.2],
213 [AC_DEFINE([HAVE_GBM_FD_IMPORT], 1, [gbm supports dmabuf import])],
214 [AC_MSG_WARN([gbm does not support dmabuf import, will omit that capability])])
218 PKG_CHECK_MODULES(LIBINPUT_BACKEND, [libinput >= 0.8.0])
219 PKG_CHECK_MODULES(COMPOSITOR, [$COMPOSITOR_MODULES])
221 PKG_CHECK_MODULES(WAYLAND_PROTOCOLS, [wayland-protocols >= 1.13],
222 [ac_wayland_protocols_pkgdatadir=`$PKG_CONFIG --variable=pkgdatadir wayland-protocols`])
223 AC_SUBST(WAYLAND_PROTOCOLS_DATADIR, $ac_wayland_protocols_pkgdatadir)
225 AC_ARG_ENABLE(wayland-compositor, [ --enable-wayland-compositor],,
226 enable_wayland_compositor=yes)
227 AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
228 test x$enable_wayland_compositor = xyes)
229 if test x$enable_wayland_compositor = xyes; then
230 AC_DEFINE([BUILD_WAYLAND_COMPOSITOR], [1],
231 [Build the Wayland (nested) compositor])
232 PKG_CHECK_MODULES(WAYLAND_COMPOSITOR, [wayland-client >= $WAYLAND_PREREQ_VERSION wayland-cursor])
233 if test x$enable_egl = xyes; then
234 PKG_CHECK_MODULES(WAYLAND_COMPOSITOR_EGL, [wayland-egl])
239 AC_ARG_ENABLE(headless-compositor, [ --enable-headless-compositor],,
240 enable_headless_compositor=yes)
241 AM_CONDITIONAL(ENABLE_HEADLESS_COMPOSITOR,
242 test x$enable_headless_compositor = xyes)
243 if test x$enable_headless_compositor = xyes; then
244 AC_DEFINE([BUILD_HEADLESS_COMPOSITOR], [1], [Build the headless compositor])
248 AC_ARG_ENABLE([fbdev-compositor], [ --enable-fbdev-compositor],,
249 enable_fbdev_compositor=yes)
250 AM_CONDITIONAL([ENABLE_FBDEV_COMPOSITOR],
251 [test x$enable_fbdev_compositor = xyes])
252 AS_IF([test x$enable_fbdev_compositor = xyes], [
253 AC_DEFINE([BUILD_FBDEV_COMPOSITOR], [1], [Build the fbdev compositor])
254 PKG_CHECK_MODULES([FBDEV_COMPOSITOR], [libudev >= 136])
257 AC_ARG_ENABLE([rdp-compositor], [ --enable-rdp-compositor],,
258 enable_rdp_compositor=no)
259 AM_CONDITIONAL([ENABLE_RDP_COMPOSITOR],
260 [test x$enable_rdp_compositor = xyes])
261 if test x$enable_rdp_compositor = xyes; then
262 AC_DEFINE([BUILD_RDP_COMPOSITOR], [1], [Build the RDP compositor])
263 PKG_CHECK_MODULES(RDP_COMPOSITOR, [freerdp2 >= 2.0.0],
265 [PKG_CHECK_MODULES(RDP_COMPOSITOR, [freerdp >= 1.1.0],[])]
267 SAVED_CPPFLAGS="$CPPFLAGS"
268 CPPFLAGS="$CPPFLAGS $RDP_COMPOSITOR_CFLAGS"
270 AC_CHECK_HEADERS([freerdp/version.h])
271 AC_CHECK_MEMBER([SURFACE_BITS_COMMAND.bmp],
272 [AC_DEFINE([HAVE_SURFACE_BITS_BMP], [1], [SURFACE_BITS_CMD has bmp field])],
274 [[#include <freerdp/update.h>]]
278 CPPFLAGS="$SAVED_CPPFLAGS"
281 AC_ARG_ENABLE([screen-sharing], [ --enable-screen-sharing],,
282 enable_screen_sharing=no)
283 AM_CONDITIONAL([ENABLE_SCREEN_SHARING],
284 [test x$enable_screen_sharing = xyes])
285 if test x$enable_screen_sharing = xyes; then
286 PKG_CHECK_MODULES(SCREEN_SHARE, [wayland-client])
288 if test x$enable_rdp_compositor != xyes; then
289 AC_MSG_WARN([The screen-share.so module requires the RDP backend.])
294 AS_HELP_STRING([--with-cairo=@<:@image|gl|glesv2@:>@]
295 [Which Cairo renderer to use for the clients]),
296 [],[with_cairo="image"])
298 if test "x$with_cairo" = "ximage"; then
299 cairo_modules="cairo"
301 if test "x$with_cairo" = "xgl"; then
302 cairo_modules="cairo-gl"
303 AC_MSG_WARN([The --with-cairo=gl option can cause increased resource usage and potential instability, and thus is not recommended. It is needed only for a few special demo programs.])
305 if test "x$with_cairo" = "xglesv2"; then
306 cairo_modules="cairo-glesv2"
307 AC_MSG_WARN([The --with-cairo=gles2 option can cause increased resource usage and potential instability, and thus is not recommended. It is needed only for a few special demo programs.])
309 AC_ERROR([Unknown cairo renderer requested])
314 # Included for legacy compat
315 AC_ARG_WITH(cairo-glesv2,
316 AS_HELP_STRING([--with-cairo-glesv2],
318 if test "x$with_cairo_glesv2" = "xyes"; then
319 cairo_modules="cairo-glesv2"
323 if test "x$cairo_modules" = "xcairo-glesv2"; then
324 AC_DEFINE([USE_CAIRO_GLESV2], [1], [Use the GLESv2 GL cairo backend])
327 PKG_CHECK_MODULES(PIXMAN, [pixman-1])
328 PKG_CHECK_MODULES(PNG, [libpng])
331 AS_HELP_STRING([--without-jpeg],
332 [Use jpeglib for JPEG decoding support [default=auto]]))
333 AS_IF([test "x$with_jpeg" != "xno"],
334 [WESTON_SEARCH_LIBS([JPEG], [jpeg], [jpeg_CreateDecompress], [have_jpeglib=yes], [have_jpeglib=no])],
336 AS_IF([test "x$have_jpeglib" = "xyes"],
337 [AC_DEFINE([HAVE_JPEG], [1], [Have jpeglib])],
338 [AS_IF([test "x$with_jpeg" = "xyes"],
339 [AC_MSG_ERROR([JPEG support explicitly requested, but jpeglib couldn't be found])])])
342 AS_HELP_STRING([--without-webp],
343 [Use libwebp for WebP decoding support [default=auto]]))
344 AS_IF([test "x$with_webp" != "xno"],
345 [PKG_CHECK_MODULES(WEBP, [libwebp], [have_webp=yes], [have_webp=no])],
347 AS_IF([test "x$have_webp" = "xyes"],
348 [AC_DEFINE([HAVE_WEBP], [1], [Have webp])],
349 [AS_IF([test "x$with_webp" = "xyes"],
350 [AC_MSG_ERROR([WebP support explicitly requested, but libwebp couldn't be found])])])
352 AC_ARG_ENABLE(vaapi-recorder, [ --enable-vaapi-recorder],,
353 enable_vaapi_recorder=auto)
355 if test x$enable_vaapi_recorder != xno; then
356 PKG_CHECK_MODULES(LIBVA, [libva >= 0.34.0 libva-drm >= 0.34.0],
357 [have_libva=yes], [have_libva=no])
358 if test "x$have_libva" = "xno" -a "x$enable_vaapi_recorder" = "xyes"; then
359 AC_MSG_ERROR([vaapi-recorder explicitly enabled, but libva couldn't be found])
361 AS_IF([test "x$have_libva" = "xyes"],
362 [AC_DEFINE([BUILD_VAAPI_RECORDER], [1], [Build the vaapi recorder])])
364 AM_CONDITIONAL(ENABLE_VAAPI_RECORDER, test "x$have_libva" = xyes)
366 PKG_CHECK_MODULES(CAIRO, [cairo])
368 PKG_CHECK_MODULES(TEST_CLIENT, [wayland-client >= $WAYLAND_PREREQ_VERSION pixman-1])
370 AC_ARG_ENABLE(simple-clients,
371 AS_HELP_STRING([--disable-simple-clients],
372 [do not build the simple wl_shm clients]),,
373 enable_simple_clients=yes)
374 AM_CONDITIONAL(BUILD_SIMPLE_CLIENTS, test "x$enable_simple_clients" = "xyes")
375 if test x$enable_simple_clients = xyes; then
376 PKG_CHECK_MODULES(SIMPLE_CLIENT, [wayland-client])
379 AC_ARG_ENABLE(simple-egl-clients,
380 AS_HELP_STRING([--disable-simple-egl-clients],
381 [do not build the simple EGL clients]),,
382 enable_simple_egl_clients="$enable_egl")
383 AM_CONDITIONAL(BUILD_SIMPLE_EGL_CLIENTS, test "x$enable_simple_egl_clients" = "xyes")
384 if test x$enable_simple_egl_clients = xyes; then
385 PKG_CHECK_MODULES(SIMPLE_EGL_CLIENT,
386 [egl glesv2 wayland-client wayland-egl wayland-cursor])
389 AC_ARG_ENABLE(simple-dmabuf-drm-client,
390 AS_HELP_STRING([--disable-simple-dmabuf-drm-client],
391 [do not build the simple dmabuf drm client]),,
392 enable_simple_dmabuf_drm_client="auto")
393 if ! test "x$enable_simple_dmabuf_drm_client" = "xno"; then
394 PKG_CHECK_MODULES(SIMPLE_DMABUF_DRM_CLIENT, [wayland-client libdrm egl], [have_simple_dmabuf_libs=yes],
395 [have_simple_dmabuf_libs=no])
397 PKG_CHECK_MODULES(LIBDRM_PLATFORM_FREEDRENO, [libdrm_freedreno],
398 AC_DEFINE([HAVE_LIBDRM_FREEDRENO], [1], [Build freedreno dmabuf client]) have_simple_dmabuf_drm_client=yes,
400 PKG_CHECK_MODULES(LIBDRM_PLATFORM_INTEL, [libdrm_intel],
401 AC_DEFINE([HAVE_LIBDRM_INTEL], [1], [Build intel dmabuf client]) have_simple_dmabuf_drm_client=yes,
403 PKG_CHECK_MODULES(LIBDRM_PLATFORM_ETNAVIV, [libdrm_etnaviv],
404 AC_DEFINE([HAVE_LIBDRM_ETNAVIV], [1], [Build etnaviv dmabuf client]) have_simple_dmabuf_drm_client=yes,
407 if test "x$have_simple_dmabuf_drm_client" != "xyes" -o \
408 "x$have_simple_dmabuf_libs" = "xno" && \
409 test "x$enable_simple_dmabuf_drm_client" = "xyes"; then
410 AC_MSG_ERROR([DRM dmabuf client explicitly enabled, but none of libdrm_{intel,freedreno,etnaviv} found])
413 if test "x$have_simple_dmabuf_drm_client" = "xyes" -a "x$have_simple_dmabuf_libs" = "xyes"; then
414 enable_simple_dmabuf_drm_client="yes"
417 AM_CONDITIONAL(BUILD_SIMPLE_DMABUF_DRM_CLIENT, test "x$enable_simple_dmabuf_drm_client" = "xyes")
419 AC_ARG_ENABLE(simple-dmabuf-v4l-client,
420 AS_HELP_STRING([--disable-simple-dmabuf-v4l-client],
421 [do not build the simple dmabuf v4l client]),,
422 enable_simple_dmabuf_v4l_client="auto")
423 if ! test "x$enable_simple_dmabuf_v4l_client" = "xno"; then
424 PKG_CHECK_MODULES(SIMPLE_DMABUF_V4L_CLIENT, [wayland-client libdrm],
425 have_simple_dmabuf_v4l_client=yes, have_simple_dmabuf_v4l_client=no)
426 if test "x$have_simple_dmabuf_v4l_client" = "xno" -a "x$enable_simple_dmabuf_v4l_client" = "xyes"; then
427 AC_MSG_ERROR([V4L dmabuf client explicitly enabled, but libdrm couldn't be found])
429 enable_simple_dmabuf_v4l_client="$have_simple_dmabuf_v4l_client"
431 AM_CONDITIONAL(BUILD_SIMPLE_DMABUF_V4L_CLIENT, test "x$enable_simple_dmabuf_v4l_client" = "xyes")
433 AC_ARG_ENABLE(clients, [ --enable-clients],, enable_clients=yes)
434 AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients = xyes)
436 if test x$enable_clients = xyes; then
437 AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
439 PKG_CHECK_MODULES(CLIENT, [wayland-client >= $WAYLAND_PREREQ_VERSION cairo >= 1.10.0 xkbcommon wayland-cursor])
440 PKG_CHECK_MODULES(SERVER, [wayland-server])
441 PKG_CHECK_MODULES(WESTON_INFO, [wayland-client >= $WAYLAND_PREREQ_VERSION])
443 # Only check for cairo-egl if a GL or GLES renderer requested
444 AS_IF([test "x$cairo_modules" = "xcairo-gl" -o "x$cairo_modules" = "xcairo-glesv2"], [
445 PKG_CHECK_MODULES(CAIRO_EGL, [wayland-egl egl cairo-egl >= 1.11.3 $cairo_modules],
446 [have_cairo_egl=yes], [have_cairo_egl=no])
447 AS_IF([test "x$have_cairo_egl" = "xyes"],
448 [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])],
449 [AC_ERROR([cairo-egl not used because $CAIRO_EGL_PKG_ERRORS])])],
452 PKG_CHECK_MODULES(PANGO, [pangocairo pango glib-2.0 >= 2.36], [have_pango=yes], [have_pango=no])
455 AC_ARG_ENABLE(resize-optimization,
456 AS_HELP_STRING([--disable-resize-optimization],
457 [disable resize optimization allocating a big buffer in toytoolkit]),,
458 enable_resize_optimization=yes)
459 AS_IF([test "x$enable_resize_optimization" = "xyes"],
460 [AC_DEFINE([USE_RESIZE_POOL], [1], [Use resize memory pool as a performance optimization])])
462 AC_ARG_ENABLE(weston-launch, [ --enable-weston-launch],, enable_weston_launch=yes)
463 AM_CONDITIONAL(BUILD_WESTON_LAUNCH, test x$enable_weston_launch = xyes)
464 if test x$enable_weston_launch = xyes; then
465 WESTON_SEARCH_LIBS([PAM], [pam], [pam_open_session], [have_pam=yes], [have_pam=no])
466 if test x$have_pam = xno; then
467 AC_ERROR([weston-launch requires pam])
471 AM_CONDITIONAL(HAVE_PANGO, test "x$have_pango" = "xyes")
472 if test "x$have_pango" = "xyes"; then
473 AC_DEFINE([HAVE_PANGO], [1], [Have pango])
476 AM_CONDITIONAL(HAVE_CAIRO_GLESV2,
477 [test "x$have_cairo_egl" = "xyes" -a "x$cairo_modules" = "xcairo-glesv2" -a "x$enable_egl" = "xyes"])
479 AM_CONDITIONAL(BUILD_FULL_GL_CLIENTS,
480 test x$cairo_modules = "xcairo-gl" -a "x$have_cairo_egl" = "xyes" -a "x$enable_egl" = "xyes")
482 AM_CONDITIONAL(BUILD_SUBSURFACES_CLIENT,
483 [test '(' "x$have_cairo_egl" != "xyes" -o "x$cairo_modules" = "xcairo-glesv2" ')' -a "x$enable_simple_egl_clients" = "xyes"])
485 AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true)
487 AC_ARG_ENABLE(fullscreen-shell,
488 AS_HELP_STRING([--disable-fullscreen-shell],
489 [do not build fullscreen-shell server plugin]),,
490 enable_fullscreen_shell=yes)
491 AM_CONDITIONAL(ENABLE_FULLSCREEN_SHELL,
492 test "x$enable_fullscreen_shell" = "xyes")
495 AC_ARG_ENABLE(colord,
496 AS_HELP_STRING([--disable-colord],
497 [do not build colord CMS support]),,
500 if test "x$enable_colord" != "xno"; then
501 PKG_CHECK_MODULES(COLORD,
505 if test "x$have_colord" = "xno" -a "x$enable_colord" = "xyes"; then
506 AC_MSG_ERROR([colord support explicitly requested, but colord couldn't be found])
508 if test "x$have_colord" = "xyes"; then
512 AM_CONDITIONAL(ENABLE_COLORD, test "x$enable_colord" = "xyes")
516 AS_HELP_STRING([--disable-dbus],
517 [do not build with dbus support]),,
520 if test "x$enable_dbus" != "xno"; then
521 PKG_CHECK_MODULES(DBUS,
525 if test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"; then
526 AC_MSG_ERROR([dbus support explicitly requested, but libdbus couldn't be found])
528 if test "x$have_dbus" = "xyes"; then
530 AC_DEFINE([HAVE_DBUS], [1], [Build with dbus support])
535 AM_CONDITIONAL(ENABLE_DBUS, test "x$enable_dbus" = "xyes")
537 # systemd-login support
538 AC_ARG_ENABLE(systemd-login,
539 AS_HELP_STRING([--enable-systemd-login],
540 [Enable logind support]),,
541 enable_systemd_login=auto)
542 if test x$enable_systemd_login != xno -a x$have_dbus != xno; then
543 PKG_CHECK_MODULES(SYSTEMD_LOGIN,
545 [have_systemd_login_209=yes;have_systemd_login=yes],
546 [have_systemd_login_209=no;have_systemd_login=no])
548 # Older versions of systemd package systemd-login separately. Fall back on that
549 AS_IF([test x$have_systemd_login != xyes],[
550 PKG_CHECK_MODULES(SYSTEMD_LOGIN,
551 [libsystemd-login >= 198],
552 [have_systemd_login=yes],
553 [have_systemd_login=no])
556 have_systemd_login=no
559 if test "x$have_systemd_login" = "xno" -a "x$enable_systemd_login" = "xyes"; then
560 AC_MSG_ERROR([systemd-login support explicitly enabled, but can't find libsystemd>=209, libsystemd-login or dbus])
563 AS_IF([test "x$have_systemd_login" = "xyes"],
564 [AC_DEFINE([HAVE_SYSTEMD_LOGIN], [1], [Have systemd-login])])
565 AM_CONDITIONAL(HAVE_SYSTEMD_LOGIN, test "x$have_systemd_login" = "xyes")
567 AS_IF([test "x$have_systemd_login_209" = "xyes"],
568 [AC_DEFINE([HAVE_SYSTEMD_LOGIN_209], [1], [Have systemd-login >= 209])])
571 # Note that other features might want libxml2, or this feature might use
572 # alternative xml libraries at some point. Therefore the feature and
573 # pre-requisite concepts are split.
574 AC_ARG_ENABLE(junit_xml,
575 AS_HELP_STRING([--disable-junit-xml],
576 [do not build with JUnit XML output]),,
577 enable_junit_xml=auto)
578 if test "x$enable_junit_xml" != "xno"; then
579 PKG_CHECK_MODULES(LIBXML2,
583 if test "x$have_libxml2" = "xno" -a "x$enable_junit_xml" = "xyes"; then
584 AC_MSG_ERROR([JUnit XML support explicitly requested, but libxml2 couldn't be found])
586 if test "x$have_libxml2" = "xyes"; then
588 AC_DEFINE(ENABLE_JUNIT_XML, [1], [Build Weston with JUnit output support])
593 AM_CONDITIONAL(ENABLE_JUNIT_XML, test "x$enable_junit_xml" = "xyes")
596 AC_ARG_ENABLE(ivi-shell,
597 AS_HELP_STRING([--disable-ivi-shell],
598 [do not build ivi-shell server plugin and client]),,
599 enable_ivi_shell=yes)
600 AM_CONDITIONAL(ENABLE_IVI_SHELL, test "x$enable_ivi_shell" = "xyes")
602 AC_ARG_ENABLE(wcap-tools, [ --disable-wcap-tools],, enable_wcap_tools=yes)
603 AM_CONDITIONAL(BUILD_WCAP_TOOLS, test x$enable_wcap_tools = xyes)
604 if test x$enable_wcap_tools = xyes; then
605 AC_DEFINE([BUILD_WCAP_TOOLS], [1], [Build the wcap tools])
606 PKG_CHECK_MODULES(WCAP, [cairo])
607 WCAP_LIBS="$WCAP_LIBS -lm"
610 PKG_CHECK_MODULES(SETBACKLIGHT, [libudev libdrm], enable_setbacklight=yes, enable_setbacklight=no)
611 AM_CONDITIONAL(BUILD_SETBACKLIGHT, test "x$enable_setbacklight" = "xyes")
613 if test "x$GCC" = "xyes"; then
614 GCC_CFLAGS="-Wall -Wextra -Wno-unused-parameter \
615 -Wno-shift-negative-value -Wno-missing-field-initializers \
616 -g -fvisibility=hidden \
617 -Wstrict-prototypes -Wmissing-prototypes -Wsign-compare"
622 if test "x$WESTON_NATIVE_BACKEND" = "x"; then
623 WESTON_NATIVE_BACKEND="drm-backend.so"
625 AC_MSG_NOTICE([Weston's native backend: $WESTON_NATIVE_BACKEND])
626 AC_DEFINE_UNQUOTED([WESTON_NATIVE_BACKEND], ["$WESTON_NATIVE_BACKEND"],
627 [The default backend to load, if not wayland nor x11.])
629 if test "x$WESTON_SHELL_CLIENT" = "x"; then
630 WESTON_SHELL_CLIENT="weston-desktop-shell"
632 AC_MSG_NOTICE([Weston's default desktop shell client: $WESTON_SHELL_CLIENT])
633 AC_DEFINE_UNQUOTED([WESTON_SHELL_CLIENT], ["$WESTON_SHELL_CLIENT"],
634 [The default desktop shell client to load.])
636 AC_ARG_ENABLE(demo-clients-install,
637 AS_HELP_STRING([--enable-demo-clients-install],
638 [Install demo clients built with weston]),,
639 enable_demo_clients_install=no)
640 AM_CONDITIONAL(INSTALL_DEMO_CLIENTS, [test "x$enable_demo_clients_install" = "xyes"])
643 AS_HELP_STRING([--disable-lcms],
644 [Disable lcms support]),,
647 if test "x$enable_lcms" != "xno"; then
648 PKG_CHECK_MODULES(LCMS,
652 if test "x$have_lcms" = "xno" -a "x$enable_lcms" = "xyes"; then
653 AC_MSG_ERROR([lcms support explicitly requested, but lcms couldn't be found])
655 if test "x$have_lcms" = "xyes"; then
657 AC_DEFINE(HAVE_LCMS, 1, [Have lcms support])
660 AM_CONDITIONAL(HAVE_LCMS, [test "x$enable_lcms" = xyes])
662 AC_PATH_PROG([wayland_scanner], [wayland-scanner])
663 if test x$wayland_scanner = x; then
664 PKG_CHECK_MODULES(WAYLAND_SCANNER, [wayland-scanner])
665 wayland_scanner=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`
668 AC_ARG_ENABLE(systemd_notify,
669 AS_HELP_STRING([--enable-systemd-notify],
670 [Enables systemd notifications to
671 notify systemd about weston state
673 Also sockets provided by systemd
674 in case of socket-base activation
675 are added to wayland display]),,
676 enable_systemd_notify=no)
677 AM_CONDITIONAL(SYSTEMD_NOTIFY_SUPPORT, test x$enable_systemd_notify = xyes)
678 if test "x$enable_systemd_notify" = "xyes"; then
679 AC_DEFINE([SYSTEMD_NOTIFY_SUPPORT], [1], [Build the systemd sd_notify support])
680 PKG_CHECK_MODULES(SYSTEMD_DAEMON, [libsystemd])
683 AC_CONFIG_FILES([Makefile libweston/version.h compositor/weston.pc])
685 # AC_CONFIG_FILES needs the full name when running autoconf, so we need to use
686 # libweston_abi_version here, and outside [] because of m4 quoting rules
687 AC_CONFIG_FILES([libweston/libweston-]libweston_major_version[.pc:libweston/libweston.pc.in])
688 AC_CONFIG_FILES([libweston/libweston-]libweston_major_version[-uninstalled.pc:libweston/libweston-uninstalled.pc.in])
689 AC_CONFIG_FILES([libweston-desktop/libweston-desktop-]libweston_major_version[.pc:libweston-desktop/libweston-desktop.pc.in])
690 AC_CONFIG_FILES([libweston-desktop/libweston-desktop-]libweston_major_version[-uninstalled.pc:libweston-desktop/libweston-desktop-uninstalled.pc.in])
692 AM_CONDITIONAL([HAVE_GIT_REPO], [test -f $srcdir/.git/logs/HEAD])
697 Native Backend ${WESTON_NATIVE_BACKEND}
698 setuid Install ${enable_setuid_install}
700 Cairo Renderer ${with_cairo}
702 xcb_xkb ${have_xcb_xkb}
703 XWayland ${enable_xwayland}
706 ivi-shell ${enable_ivi_shell}
708 Build wcap utility ${enable_wcap_tools}
709 Build Fullscreen Shell ${enable_fullscreen_shell}
710 Enable developer documentation ${enable_devdocs}
712 weston-launch utility ${enable_weston_launch}
713 systemd-login support ${have_systemd_login}
714 systemd notify support ${enable_systemd_notify}
716 DRM Compositor ${enable_drm_compositor}
717 X11 Compositor ${enable_x11_compositor}
718 Wayland Compositor ${enable_wayland_compositor}
719 Headless Compositor ${enable_headless_compositor}
720 FBDEV Compositor ${enable_fbdev_compositor}
721 RDP Compositor ${enable_rdp_compositor}
722 Screen Sharing ${enable_screen_sharing}
723 JUnit XML output ${enable_junit_xml}
725 Build Clients ${enable_clients}
726 Build EGL Clients ${have_cairo_egl}
727 Build Simple Clients ${enable_simple_clients}
728 Build Simple EGL Clients ${enable_simple_egl_clients}
730 Install Demo Clients ${enable_demo_clients_install}
732 Colord Support ${have_colord}
733 LCMS2 Support ${have_lcms}
734 libjpeg Support ${have_jpeglib}
735 libwebp Support ${have_webp}
736 VA H.264 encoding Support ${have_libva}