4 [https://bugs.freedesktop.org/enter_bug.cgi?product=weston],
6 [http://wayland.freedesktop.org/])
8 AC_CONFIG_HEADERS([config.h])
10 AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
12 AM_SILENT_RULES([yes])
20 LT_INIT([disable-static])
24 AC_CHECK_FUNC([dlopen], [],
25 AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
28 AC_CHECK_HEADERS([execinfo.h])
30 AC_CHECK_FUNCS([mkostemp strchrnul])
32 PKG_CHECK_MODULES(COMPOSITOR,
33 [wayland-server egl >= 7.10 glesv2 xkbcommon pixman-1])
36 AC_ARG_ENABLE(setuid-install, [ --enable-setuid-install],,
37 enable_setuid_install=yes)
38 AM_CONDITIONAL(ENABLE_SETUID_INSTALL, test x$enable_setuid_install = xyes)
41 AC_ARG_ENABLE(xwayland, [ --enable-xwayland],,
43 AM_CONDITIONAL(ENABLE_XWAYLAND, test x$enable_xwayland = xyes)
44 if test x$enable_xwayland = xyes; then
45 PKG_CHECK_MODULES([XWAYLAND], xcb xcb-xfixes cairo-xcb)
46 AC_DEFINE([BUILD_XWAYLAND], [1], [Build the X server launcher])
48 AC_ARG_WITH(xserver-path, AS_HELP_STRING([--with-xserver-path=PATH],
49 [Path to X server]), [XSERVER_PATH="$withval"],
50 [XSERVER_PATH="$bindir/Xorg"])
51 AC_SUBST([XSERVER_PATH])
55 AC_ARG_ENABLE(x11-compositor, [ --enable-x11-compositor],,
56 enable_x11_compositor=yes)
57 AM_CONDITIONAL(ENABLE_X11_COMPOSITOR, test x$enable_x11_compositor = xyes)
58 if test x$enable_x11_compositor = xyes; then
59 PKG_CHECK_MODULES([XCB], xcb)
61 xcb_save_CFLAGS=$CFLAGS
64 AC_CHECK_FUNCS([xcb_poll_for_queued_event])
66 CFLAGS=$xcb_save_CFLAGS
68 X11_COMPOSITOR_MODULES="x11 x11-xcb"
70 PKG_CHECK_MODULES(X11_COMPOSITOR_XKB, [xcb-xkb],
71 [have_xcb_xkb="yes"], [have_xcb_xkb="no"])
72 if test "x$have_xcb_xkb" = xyes; then
73 # Most versions of XCB have totally broken XKB bindings, where the
74 # events don't work. Make sure we can actually use them.
75 xcb_xkb_save_CFLAGS=$CFLAGS
76 CFLAGS=$X11_COMPOSITOR_XKB_CFLAGS
77 AC_CHECK_MEMBER([struct xcb_xkb_state_notify_event_t.xkbType],
78 [], [have_xcb_xkb=no], [[#include <xcb/xkb.h>]])
79 CFLAGS=$xcb_xkb_save_CFLAGS
81 if test "x$have_xcb_xkb" = xyes; then
82 X11_COMPOSITOR_MODULES="$X11_COMPOSITOR_MODULES xcb-xkb"
83 AC_DEFINE([HAVE_XCB_XKB], [1], [libxcb supports XKB protocol])
86 PKG_CHECK_MODULES(X11_COMPOSITOR, [$X11_COMPOSITOR_MODULES])
87 AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor])
91 AC_ARG_ENABLE(drm-compositor, [ --enable-drm-compositor],,
92 enable_drm_compositor=yes)
93 AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor = xyes)
94 if test x$enable_drm_compositor = xyes; then
95 AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
96 PKG_CHECK_MODULES(DRM_COMPOSITOR, [libudev >= 136 libdrm >= 2.4.30 gbm mtdev >= 1.1.0])
100 AC_ARG_ENABLE(openwfd-compositor, [ --enable-openwfd-compositor],,
101 enable_openwfd_compositor=no)
102 AM_CONDITIONAL(ENABLE_OPENWFD_COMPOSITOR, test x$enable_openwfd_compositor = xyes)
103 if test x$enable_openwfd_compositor = xyes; then
104 AC_DEFINE([BUILD_OPENWFD_COMPOSITOR], [1], [Build the OpenWF compositor])
105 PKG_CHECK_MODULES(OPENWFD_COMPOSITOR, [openwfd gbm])
109 AC_ARG_ENABLE(wayland-compositor, [ --enable-wayland-compositor],,
110 enable_wayland_compositor=yes)
111 AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
112 test x$enable_wayland_compositor = xyes)
113 if test x$enable_wayland_compositor = xyes; then
114 AC_DEFINE([BUILD_WAYLAND_COMPOSITOR], [1],
115 [Build the Wayland (nested) compositor])
116 PKG_CHECK_MODULES(WAYLAND_COMPOSITOR, [wayland-client wayland-egl])
120 AC_ARG_ENABLE(android-compositor,
121 AS_HELP_STRING([--disable-android-compositor],
122 [do not build-test the Android 4.0 backend]),,
123 enable_android_compositor=yes)
124 AM_CONDITIONAL(ENABLE_ANDROID_COMPOSITOR, test x$enable_android_compositor = xyes)
125 if test x$enable_android_compositor = xyes; then
126 AC_DEFINE([BUILD_ANDROID_COMPOSITOR], [1], [Build the compositor for Android 4.0])
130 AC_ARG_WITH(cairo-glesv2, AS_HELP_STRING([--with-cairo-glesv2],
131 [Use GLESv2 cairo instead of full GL]),
132 [cairo_modules="cairo-glesv2"],
133 [cairo_modules="cairo-gl"])
134 if test x$cairo_modules = xcairo-glesv2; then
135 AC_DEFINE([USE_CAIRO_GLESV2], [1], [Use the GLESv2 GL cairo backend])
138 PKG_CHECK_MODULES(PIXMAN, [pixman-1])
139 PKG_CHECK_MODULES(PNG, [libpng])
140 PKG_CHECK_MODULES(WEBP, [libwebp], [have_webp=yes], [have_webp=no])
141 AS_IF([test "x$have_webp" = "xyes"],
142 [AC_DEFINE([HAVE_WEBP], [1], [Have webp])])
144 PKG_CHECK_MODULES(CAIRO, [cairo])
145 SHARED_LIBS="$CAIRO_LIBS $PIXMAN_LIBS $PNG_LIBS $WEBP_LIBS"
146 SHARED_CFLAGS="$CAIRO_CFLAGS $PIXMAN_CFLAGS $PNG_CFLAGS $WEBP_CFLAGS"
147 AC_SUBST(SHARED_LIBS)
148 AC_SUBST(SHARED_CFLAGS)
150 AC_CHECK_LIB([jpeg], [jpeg_CreateDecompress], have_jpeglib=yes)
151 if test x$have_jpeglib = xyes; then
152 IMAGE_LIBS="$IMAGE_LIBS -ljpeg"
154 AC_ERROR([libjpeg not found])
157 COMPOSITOR_LIBS="$COMPOSITOR_LIBS $IMAGE_LIBS"
158 COMPOSITOR_CFLAGS="$COMPOSITOR_CFLAGS $IMAGE_CFLAGS"
160 AC_ARG_ENABLE(simple-clients, [ --enable-simple-clients],, enable_simple_clients=yes)
161 AM_CONDITIONAL(BUILD_SIMPLE_CLIENTS, test x$enable_simple_clients = xyes)
162 if test x$enable_simple_clients = xyes; then
163 AC_DEFINE([BUILD_SIMPLE_CLIENTS], [1], [Build the Wayland simple clients])
164 PKG_CHECK_MODULES(SIMPLE_CLIENT,
165 [egl >= 7.10 glesv2 wayland-client wayland-egl])
168 AC_ARG_ENABLE(clients, [ --enable-clients],, enable_clients=yes)
169 AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients = xyes)
170 if test x$enable_clients = xyes; then
171 AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
173 PKG_CHECK_MODULES(CLIENT, [wayland-client wayland-egl egl >= 7.10 cairo >= 1.10.0 xkbcommon wayland-cursor])
175 CLIENT_CFLAGS="$CLIENT_CFLAGS $IMAGE_CFLAGS"
176 CLIENT_LIBS="$CLIENT_LIBS $IMAGE_LIBS"
178 PKG_CHECK_MODULES(POPPLER, [poppler-glib glib-2.0 gobject-2.0 gio-2.0 ],
179 [have_poppler=yes], [have_poppler=no])
180 PKG_CHECK_MODULES(CAIRO_EGL, [cairo-egl >= 1.11.3 $cairo_modules],
181 [have_cairo_egl=yes], [have_cairo_egl=no])
182 AS_IF([test "x$have_cairo_egl" = "xyes"],
183 [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])],
184 [AC_MSG_WARN([Cairo-EGL not found - clients will use cairo image])])
187 AC_ARG_ENABLE(weston-launch, [ --enable-weston-launch],, enable_weston_launch=yes)
188 AM_CONDITIONAL(BUILD_WESTON_LAUNCH, test x$enable_weston_launch == xyes)
189 if test x$enable_weston_launch == xyes; then
190 PKG_CHECK_MODULES(WESTON_LAUNCH, [libdrm])
191 PKG_CHECK_MODULES(SYSTEMD_LOGIN, [libsystemd-login],
192 [have_systemd_login=yes], [have_systemd_login=no])
193 AS_IF([test "x$have_systemd_login" = "xyes"],
194 [AC_DEFINE([HAVE_SYSTEMD_LOGIN], [1], [Have systemd-login])])
196 AC_CHECK_LIB([pam], [pam_open_session], [have_pam=yes], [have_pam=no])
197 if test x$have_pam == xno; then
198 AC_ERROR([weston-launch requires pam])
200 WESTON_LAUNCH_LIBS="$WESTON_LAUNCH_LIBS -lpam"
203 AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
205 AM_CONDITIONAL(BUILD_FULL_GL_CLIENTS,
206 test x$cairo_modules = "xcairo-gl" -a "x$have_cairo_egl" = "xyes")
208 AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true)
210 AC_ARG_ENABLE(tablet-shell, [ --enable-tablet-shell],,
211 enable_tablet_shell=yes)
212 AM_CONDITIONAL(ENABLE_TABLET_SHELL,
213 test x$enable_tablet_shell = xyes)
216 AC_ARG_ENABLE(wcap-tools, [ --disable-wcap-tools],, enable_wcap_tools=yes)
217 AM_CONDITIONAL(BUILD_WCAP_TOOLS, test x$enable_wcap_tools = xyes)
218 if test x$enable_wcap_tools = xyes; then
219 AC_DEFINE([BUILD_WCAP_TOOLS], [1], [Build the wcap tools])
220 PKG_CHECK_MODULES(WCAP, [cairo vpx])
221 WCAP_LIBS="$WCAP_LIBS -lm"
224 AC_CHECK_PROG(RSVG_CONVERT, rsvg-convert, rsvg-convert)
225 AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_CONVERT")
228 if test "x$GCC" = "xyes"; then
229 my_common_gcc_flags="-Wall -Wextra -Wno-unused-parameter \
230 -Wno-missing-field-initializers -g -fvisibility=hidden"
231 GCC_CFLAGS="$my_common_gcc_flags \
232 -Wstrict-prototypes -Wmissing-prototypes"
233 GCC_CXXFLAGS="$my_common_gcc_flags"
236 AC_SUBST(GCC_CXXFLAGS)
238 WAYLAND_SCANNER_RULES(['$(top_srcdir)/protocol'])
240 AC_CONFIG_FILES([Makefile
243 src/xwayland/Makefile
251 if test "x$enable_setuid_install" = xyes; then
254 *** You've enabled the setuid install hook. Weston is still a
255 *** pre-alpha project and may have bugs and issues that make a
256 *** setuid install unsafe. Proceed at your own risk.