2 AC_INIT([wayland-demos],
4 [https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
6 [http://wayland.freedesktop.org/])
8 AC_CONFIG_HEADERS([config.h])
10 AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2])
12 AM_SILENT_RULES([yes])
19 LT_INIT([disable-static])
23 AC_CHECK_FUNC([dlopen], [],
24 AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
27 PKG_CHECK_MODULES(COMPOSITOR,
28 [wayland-server egl >= 7.10 glesv2 pixman-1 libpng])
30 AC_CHECK_PROG(RSVG_CONVERT, rsvg-convert, rsvg-convert)
31 AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_CONVERT")
33 AC_ARG_ENABLE(x11-compositor, [ --enable-x11-compositor],,
34 enable_x11_compositor=yes)
35 AM_CONDITIONAL(ENABLE_X11_COMPOSITOR, test x$enable_x11_compositor == xyes)
36 if test x$enable_x11_compositor == xyes; then
37 PKG_CHECK_MODULES([XCB], xcb)
39 xcb_save_CFLAGS=$CFLAGS
42 AC_CHECK_FUNCS([xcb_poll_for_queued_event])
44 CFLAGS=$xcb_save_CFLAGS
46 AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor])
47 PKG_CHECK_MODULES(X11_COMPOSITOR, [x11 x11-xcb])
51 AC_ARG_ENABLE(drm-compositor, [ --enable-drm-compositor],,
52 enable_drm_compositor=yes)
53 AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor == xyes)
54 if test x$enable_drm_compositor == xyes; then
55 AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
56 PKG_CHECK_MODULES(DRM_COMPOSITOR, [libudev >= 136 libdrm >= 2.4.23])
60 AC_ARG_ENABLE(openwfd-compositor, [ --enable-openwfd-compositor],,
61 enable_openwfd_compositor=no)
62 AM_CONDITIONAL(ENABLE_OPENWFD_COMPOSITOR, test x$enable_openwfd_compositor == xyes)
63 if test x$enable_openwfd_compositor == xyes; then
64 AC_DEFINE([BUILD_OPENWFD_COMPOSITOR], [1], [Build the OpenWF compositor])
65 PKG_CHECK_MODULES(OPENWFD_COMPOSITOR, [openwfd])
69 AC_ARG_ENABLE(wayland-compositor, [ --enable-wayland-compositor],,
70 enable_wayland_compositor=yes)
71 AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
72 test x$enable_wayland_compositor == xyes)
73 if test x$enable_wayland_compositor == xyes; then
74 AC_DEFINE([BUILD_WAYLAND_COMPOSITOR], [1],
75 [Build the Wayland (nested) compositor])
76 PKG_CHECK_MODULES(WAYLAND_COMPOSITOR, [wayland-client wayland-egl])
80 AC_ARG_ENABLE(clients, [ --enable-clients],, enable_clients=yes)
81 AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients == xyes)
82 if test x$enable_clients == xyes; then
83 AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
85 PKG_CHECK_MODULES(SIMPLE_CLIENT,
86 [egl >= 7.10 glesv2 wayland-client wayland-egl])
87 PKG_CHECK_MODULES(CLIENT, [wayland-client wayland-egl egl >= 7.10 gl cairo >= 1.10.0 gdk-pixbuf-2.0 glib-2.0 gobject-2.0 xkbcommon])
89 PKG_CHECK_MODULES(POPPLER, [poppler-glib gdk-2.0 gio-2.0],
90 [have_poppler=yes], [have_poppler=no])
91 PKG_CHECK_MODULES(CAIRO_EGL, [cairo-egl >= 1.11.3],
92 [have_cairo_egl=yes], [have_cairo_egl=no])
93 AS_IF([test "x$have_cairo_egl" = "xyes"],
94 [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])])
97 AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
99 AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true)
101 AC_ARG_ENABLE(meego-tablet-shell, [ --enable-meego-tablet-shell],,
102 enable_meego_tablet_shell=yes)
103 AM_CONDITIONAL(ENABLE_MEEGO_TABLET_SHELL,
104 test x$enable_meego_tablet_shell == xyes)
106 if test "x$GCC" = "xyes"; then
107 GCC_CFLAGS="-Wall -g -Wstrict-prototypes -Wmissing-prototypes -fvisibility=hidden"
111 WAYLAND_SCANNER_RULES(['$(top_srcdir)/protocol'])
113 AC_CONFIG_FILES([Makefile