4dfd161ffdef6efbcf91630343b49b741a600aea
[profile/ivi/weston.git] / configure.ac
1 AC_PREREQ([2.64])
2 AC_INIT([weston],
3         [0.89],
4         [https://bugs.freedesktop.org/enter_bug.cgi?product=weston],
5         [weston],
6         [http://wayland.freedesktop.org/])
7
8 AC_CONFIG_HEADERS([config.h])
9
10 AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
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 xkbcommon pixman-1])
29
30
31 AC_ARG_ENABLE(setuid-install, [  --enable-setuid-install],,
32               enable_setuid_install=yes)
33 AM_CONDITIONAL(ENABLE_SETUID_INSTALL, test x$enable_setuid_install = xyes)
34
35
36 AC_ARG_ENABLE(xwayland, [  --enable-xwayland],,
37               enable_xwayland=yes)
38 AM_CONDITIONAL(ENABLE_XWAYLAND, test x$enable_xwayland = xyes)
39 if test x$enable_xwayland = xyes; then
40   PKG_CHECK_MODULES([XWAYLAND], xcb xcb-xfixes cairo-xcb)
41   AC_DEFINE([BUILD_XWAYLAND], [1], [Build the X server launcher])
42
43   AC_ARG_WITH(xserver-path, AS_HELP_STRING([--with-xserver-path=PATH],
44               [Path to X server]), [XSERVER_PATH="$withval"],
45               [XSERVER_PATH="$bindir/Xorg"])
46   AC_SUBST([XSERVER_PATH])
47 fi
48
49
50 AC_ARG_ENABLE(x11-compositor, [  --enable-x11-compositor],,
51               enable_x11_compositor=yes)
52 AM_CONDITIONAL(ENABLE_X11_COMPOSITOR, test x$enable_x11_compositor = xyes)
53 if test x$enable_x11_compositor = xyes; then
54   PKG_CHECK_MODULES([XCB], xcb)
55   xcb_save_LIBS=$LIBS
56   xcb_save_CFLAGS=$CFLAGS
57   CFLAGS=$XCB_CFLAGS
58   LIBS=$XCB_LIBS
59   AC_CHECK_FUNCS([xcb_poll_for_queued_event])
60   LIBS=$xcb_save_LIBS
61   CFLAGS=$xcb_save_CFLAGS
62
63   AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor])
64   PKG_CHECK_MODULES(X11_COMPOSITOR, [x11 x11-xcb])
65 fi
66
67
68 AC_ARG_ENABLE(drm-compositor, [  --enable-drm-compositor],,
69               enable_drm_compositor=yes)
70 AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor = xyes)
71 if test x$enable_drm_compositor = xyes; then
72   AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
73   PKG_CHECK_MODULES(DRM_COMPOSITOR, [libudev >= 136 libdrm >= 2.4.30 gbm mtdev >= 1.1.0])
74 fi
75
76
77 AC_ARG_ENABLE(openwfd-compositor, [  --enable-openwfd-compositor],,
78               enable_openwfd_compositor=no)
79 AM_CONDITIONAL(ENABLE_OPENWFD_COMPOSITOR, test x$enable_openwfd_compositor = xyes)
80 if test x$enable_openwfd_compositor = xyes; then
81   AC_DEFINE([BUILD_OPENWFD_COMPOSITOR], [1], [Build the OpenWF compositor])
82   PKG_CHECK_MODULES(OPENWFD_COMPOSITOR, [openwfd gbm])
83 fi
84
85
86 AC_ARG_ENABLE(wayland-compositor, [  --enable-wayland-compositor],,
87               enable_wayland_compositor=yes)
88 AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
89                test x$enable_wayland_compositor = xyes)
90 if test x$enable_wayland_compositor = xyes; then
91   AC_DEFINE([BUILD_WAYLAND_COMPOSITOR], [1],
92             [Build the Wayland (nested) compositor])
93   PKG_CHECK_MODULES(WAYLAND_COMPOSITOR, [wayland-client wayland-egl])
94 fi
95
96 AC_ARG_WITH(cairo-glesv2, AS_HELP_STRING([--with-cairo-glesv2],
97               [Use GLESv2 cairo instead of full GL]),
98               [cairo_modules="cairo-glesv2"],
99               [cairo_modules="cairo-gl"])
100 if test x$cairo_modules = xcairo-glesv2; then
101   AC_DEFINE([USE_CAIRO_GLESV2], [1], [Use the GLESv2 GL cairo backend])
102 fi
103
104 PKG_CHECK_MODULES(PIXMAN, [pixman-1])
105 PKG_CHECK_MODULES(PNG, [libpng])
106 PKG_CHECK_MODULES(WEBP, [libwebp], [have_webp=yes], [have_webp=no])
107 AS_IF([test "x$have_webp" = "xyes"],
108       [AC_DEFINE([HAVE_WEBP], [1], [Have webp])])
109
110 PKG_CHECK_MODULES(CAIRO, [cairo])
111 SHARED_LIBS="$CAIRO_LIBS $PIXMAN_LIBS $PNG_LIBS $WEBP_LIBS"
112 SHARED_CFLAGS="$CAIRO_CFLAGS $PIXMAN_CFLAGS $PNG_CFLAGS $WEBP_CFLAGS"
113 AC_SUBST(SHARED_LIBS)
114 AC_SUBST(SHARED_CFLAGS)
115
116 AC_CHECK_LIB([jpeg], [jpeg_CreateDecompress], have_jpeglib=yes)
117 if test x$have_jpeglib = xyes; then
118   IMAGE_LIBS="$IMAGE_LIBS -ljpeg"
119 else
120   AC_ERROR([libjpeg not found])
121 fi
122
123 COMPOSITOR_LIBS="$COMPOSITOR_LIBS $IMAGE_LIBS"
124 COMPOSITOR_CFLAGS="$COMPOSITOR_CFLAGS $IMAGE_CFLAGS"
125
126 AC_ARG_ENABLE(simple-clients, [  --enable-simple-clients],, enable_simple_clients=yes)
127 AM_CONDITIONAL(BUILD_SIMPLE_CLIENTS, test x$enable_simple_clients = xyes)
128 if test x$enable_simple_clients = xyes; then
129   AC_DEFINE([BUILD_SIMPLE_CLIENTS], [1], [Build the Wayland simple clients])
130   PKG_CHECK_MODULES(SIMPLE_CLIENT,
131                     [egl >= 7.10 glesv2 wayland-client wayland-egl])
132 fi
133
134 AC_ARG_ENABLE(clients, [  --enable-clients],, enable_clients=yes)
135 AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients = xyes)
136 if test x$enable_clients = xyes; then
137   AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
138
139   PKG_CHECK_MODULES(CLIENT, [wayland-client wayland-egl egl >= 7.10 cairo >= 1.10.0 xkbcommon wayland-cursor])
140
141   CLIENT_CFLAGS="$CLIENT_CFLAGS $IMAGE_CFLAGS"
142   CLIENT_LIBS="$CLIENT_LIBS $IMAGE_LIBS"
143
144   PKG_CHECK_MODULES(POPPLER, [poppler-glib glib-2.0 gobject-2.0 gio-2.0 ],
145                              [have_poppler=yes], [have_poppler=no])
146   PKG_CHECK_MODULES(CAIRO_EGL, [cairo-egl >= 1.11.3 $cairo_modules],
147                     [have_cairo_egl=yes], [have_cairo_egl=no])
148   AS_IF([test "x$have_cairo_egl" = "xyes"],
149         [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])],
150         [AC_MSG_WARN([Cairo-EGL not found - clients will use cairo image])])
151 fi
152
153 AC_ARG_ENABLE(weston-launch, [  --enable-weston-launch],, enable_weston_launch=yes)
154 AM_CONDITIONAL(BUILD_WESTON_LAUNCH, test x$enable_weston_launch == xyes)
155 if test x$enable_weston_launch == xyes; then
156   PKG_CHECK_MODULES(WESTON_LAUNCH, [libdrm])
157   PKG_CHECK_MODULES(SYSTEMD_LOGIN, [libsystemd-login],
158                     [have_systemd_login=yes], [have_systemd_login=no])
159   AS_IF([test "x$have_systemd_login" = "xyes"],
160         [AC_DEFINE([HAVE_SYSTEMD_LOGIN], [1], [Have systemd-login])])
161
162   AC_CHECK_LIB([pam], [pam_open_session], [have_pam=yes], [have_pam=no])
163   if test x$have_pam == xno; then
164     AC_ERROR([weston-launch requires pam])
165   fi
166   WESTON_LAUNCH_LIBS="$WESTON_LAUNCH_LIBS -lpam"
167 fi
168
169 AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
170
171 AM_CONDITIONAL(BUILD_FULL_GL_CLIENTS,
172                test x$cairo_modules = "xcairo-gl" -a "x$have_cairo_egl" = "xyes")
173
174 AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true)
175
176 AC_ARG_ENABLE(tablet-shell, [  --enable-tablet-shell],,
177               enable_tablet_shell=yes)
178 AM_CONDITIONAL(ENABLE_TABLET_SHELL,
179                test x$enable_tablet_shell = xyes)
180
181
182 AC_ARG_ENABLE(wcap-tools, [  --disable-wcap-tools],, enable_wcap_tools=yes)
183 AM_CONDITIONAL(BUILD_WCAP_TOOLS, test x$enable_wcap_tools = xyes)
184 if test x$enable_wcap_tools = xyes; then
185   AC_DEFINE([BUILD_WCAP_TOOLS], [1], [Build the wcap tools])
186   PKG_CHECK_MODULES(WCAP, [cairo vpx])
187   WCAP_LIBS="$WCAP_LIBS -lm"
188 fi
189
190 AC_CHECK_PROG(RSVG_CONVERT, rsvg-convert, rsvg-convert)
191 AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_CONVERT")
192
193
194 if test "x$GCC" = "xyes"; then
195         GCC_CFLAGS="-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes \
196                 -Wno-unused-parameter -Wno-missing-field-initializers \
197                 -g -fvisibility=hidden"
198
199 fi
200 AC_SUBST(GCC_CFLAGS)
201
202 WAYLAND_SCANNER_RULES(['$(top_srcdir)/protocol'])
203
204 AC_CONFIG_FILES([Makefile
205                  shared/Makefile
206                  src/Makefile
207                  src/xwayland/Makefile
208                  clients/Makefile
209                  wcap/Makefile
210                  data/Makefile
211                  protocol/Makefile
212                  tests/Makefile])
213 AC_OUTPUT
214
215 if test "x$enable_setuid_install" = xyes; then
216 AC_MSG_WARN([
217
218  *** You've enabled the setuid install hook.  Weston is still a 
219  *** pre-alpha project and may have bugs and issues that make a
220  *** setuid install unsafe. Proceed at your own risk.
221 ])
222 fi
223