configure: Only check for XCB if x11 compositor is enabled
[profile/ivi/weston-ivi-shell.git] / configure.ac
1 AC_PREREQ([2.64])
2 AC_INIT([wayland-demos],
3         [0.1],
4         [https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
5         [wayland-demos],
6         [http://wayland.freedesktop.org/])
7
8 AC_CONFIG_HEADERS([config.h])
9
10 AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2])
11
12 AM_SILENT_RULES([yes])
13
14 # Check for programs
15 AC_PROG_CC
16
17 # Initialize libtool
18 LT_PREREQ([2.2])
19 LT_INIT([disable-static])
20
21 PKG_PROG_PKG_CONFIG()
22
23 AC_CHECK_FUNC([dlopen], [],
24               AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
25 AC_SUBST(DLOPEN_LIBS)
26
27 PKG_CHECK_MODULES(COMPOSITOR,
28                   [wayland-server egl >= 7.10 glesv2 pixman-1 libpng])
29
30 AC_CHECK_PROG(RSVG_CONVERT, rsvg-convert, rsvg-convert)
31 AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_CONVERT")
32
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)
38   xcb_save_LIBS=$LIBS
39   xcb_save_CFLAGS=$CFLAGS
40   CFLAGS=$XCB_CFLAGS
41   LIBS=$XCB_LIBS
42   AC_CHECK_FUNCS([xcb_poll_for_queued_event])
43   LIBS=$xcb_save_LIBS
44   CFLAGS=$xcb_save_CFLAGS
45
46   AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor])
47   PKG_CHECK_MODULES(X11_COMPOSITOR, [x11 x11-xcb])
48 fi
49
50
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])
57 fi
58
59
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])
66 fi
67
68
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])
77 fi
78
79
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])
84
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])
88
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])])
95 fi
96
97 AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
98
99 AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true)
100
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)
105
106 if test "x$GCC" = "xyes"; then
107         GCC_CFLAGS="-Wall -g -Wstrict-prototypes -Wmissing-prototypes -fvisibility=hidden"
108 fi
109 AC_SUBST(GCC_CFLAGS)
110
111 WAYLAND_SCANNER_RULES(['$(top_srcdir)/protocol'])
112
113 AC_CONFIG_FILES([Makefile
114                  compositor/Makefile
115                  clients/Makefile
116                  data/Makefile])
117 AC_OUTPUT