Javier Jardón | 5b7e43a | 2010-11-06 01:55:27 +0100 | [diff] [blame] | 1 | AC_PREREQ([2.64]) |
Kristian Høgsberg | b2d7185 | 2011-02-14 22:13:33 -0500 | [diff] [blame] | 2 | AC_INIT([wayland-demos], |
Javier Jardón | 5b7e43a | 2010-11-06 01:55:27 +0100 | [diff] [blame] | 3 | [0.1], |
| 4 | [https://bugs.freedesktop.org/enter_bug.cgi?product=wayland], |
Kristian Høgsberg | b2d7185 | 2011-02-14 22:13:33 -0500 | [diff] [blame] | 5 | [wayland-demos], |
Javier Jardón | 5b7e43a | 2010-11-06 01:55:27 +0100 | [diff] [blame] | 6 | [http://wayland.freedesktop.org/]) |
| 7 | |
Kristian Høgsberg | d0c3b9d | 2010-10-25 11:40:03 -0400 | [diff] [blame] | 8 | AC_CONFIG_HEADERS([config.h]) |
Javier Jardón | 5b7e43a | 2010-11-06 01:55:27 +0100 | [diff] [blame] | 9 | |
| 10 | AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2]) |
| 11 | |
Kristian Høgsberg | f0152da | 2010-10-12 17:24:20 -0400 | [diff] [blame] | 12 | AM_SILENT_RULES([yes]) |
Kristian Høgsberg | d4de54e | 2008-12-04 22:48:50 -0500 | [diff] [blame] | 13 | |
Javier Jardón | 5b7e43a | 2010-11-06 01:55:27 +0100 | [diff] [blame] | 14 | # Check for programs |
| 15 | AC_PROG_CC |
Javier Jardón | 5b7e43a | 2010-11-06 01:55:27 +0100 | [diff] [blame] | 16 | |
Kristian Høgsberg | 02ec0a5 | 2011-04-23 13:04:11 -0400 | [diff] [blame] | 17 | # Initialize libtool |
| 18 | LT_PREREQ([2.2]) |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 19 | LT_INIT([disable-static]) |
Kristian Høgsberg | 02ec0a5 | 2011-04-23 13:04:11 -0400 | [diff] [blame] | 20 | |
Kristian Høgsberg | d4de54e | 2008-12-04 22:48:50 -0500 | [diff] [blame] | 21 | PKG_PROG_PKG_CONFIG() |
Kristian Høgsberg | d4de54e | 2008-12-04 22:48:50 -0500 | [diff] [blame] | 22 | |
Kristian Høgsberg | 02ec0a5 | 2011-04-23 13:04:11 -0400 | [diff] [blame] | 23 | AC_CHECK_FUNC([dlopen], [], |
| 24 | AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl")) |
| 25 | AC_SUBST(DLOPEN_LIBS) |
| 26 | |
Kristian Høgsberg | 8286302 | 2010-06-04 21:52:02 -0400 | [diff] [blame] | 27 | PKG_CHECK_MODULES(COMPOSITOR, |
Kristian Høgsberg | 8ff7a3c | 2011-05-02 13:37:47 -0400 | [diff] [blame] | 28 | [wayland-server egl >= 7.10 glesv2 pixman-1 libpng]) |
Kristian Høgsberg | 08c40c3 | 2011-01-11 13:48:03 -0500 | [diff] [blame] | 29 | |
Kristian Høgsberg | 26ef22e | 2011-01-26 15:33:24 -0500 | [diff] [blame] | 30 | AC_CHECK_PROG(RSVG_CONVERT, rsvg-convert, rsvg-convert) |
| 31 | AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_CONVERT") |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 32 | |
Kristian Høgsberg | 5ec0a93 | 2011-07-01 10:46:40 -0400 | [diff] [blame] | 33 | |
| 34 | AC_ARG_ENABLE(xserver-launcher, [ --enable-xserver-launcher],, |
| 35 | enable_xserver_launcher=yes) |
| 36 | AM_CONDITIONAL(ENABLE_XSERVER_LAUNCHER, test x$enable_xserver_launcher == xyes) |
| 37 | if test x$enable_xserver_launcher == xyes; then |
Kristian Høgsberg | e7aaec3 | 2011-12-27 13:50:04 -0500 | [diff] [blame] | 38 | PKG_CHECK_MODULES([XSERVER_LAUNCHER], xcb xcb-xfixes) |
Kristian Høgsberg | 5ec0a93 | 2011-07-01 10:46:40 -0400 | [diff] [blame] | 39 | AC_DEFINE([BUILD_XSERVER_LAUNCHER], [1], [Build the X server launcher]) |
Tiago Vignatti | 5884bcd | 2011-08-03 12:12:31 +0300 | [diff] [blame] | 40 | |
| 41 | AC_ARG_WITH(xserver-path, AS_HELP_STRING([--with-xserver-path=PATH], |
| 42 | [Path to X server]), [XSERVER_PATH="$withval"], |
| 43 | [XSERVER_PATH="$bindir/Xorg"]) |
| 44 | AC_SUBST([XSERVER_PATH]) |
Kristian Høgsberg | 5ec0a93 | 2011-07-01 10:46:40 -0400 | [diff] [blame] | 45 | fi |
| 46 | |
| 47 | |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 48 | AC_ARG_ENABLE(x11-compositor, [ --enable-x11-compositor],, |
| 49 | enable_x11_compositor=yes) |
| 50 | AM_CONDITIONAL(ENABLE_X11_COMPOSITOR, test x$enable_x11_compositor == xyes) |
| 51 | if test x$enable_x11_compositor == xyes; then |
Kristian Høgsberg | a010abf | 2011-05-11 13:46:29 -0400 | [diff] [blame] | 52 | PKG_CHECK_MODULES([XCB], xcb) |
| 53 | xcb_save_LIBS=$LIBS |
| 54 | xcb_save_CFLAGS=$CFLAGS |
| 55 | CFLAGS=$XCB_CFLAGS |
| 56 | LIBS=$XCB_LIBS |
| 57 | AC_CHECK_FUNCS([xcb_poll_for_queued_event]) |
| 58 | LIBS=$xcb_save_LIBS |
| 59 | CFLAGS=$xcb_save_CFLAGS |
| 60 | |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 61 | AC_DEFINE([BUILD_X11_COMPOSITOR], [1], [Build the X11 compositor]) |
Kristian Høgsberg | 80492e2 | 2011-04-26 11:10:32 -0400 | [diff] [blame] | 62 | PKG_CHECK_MODULES(X11_COMPOSITOR, [x11 x11-xcb]) |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 63 | fi |
| 64 | |
| 65 | |
Kristian Høgsberg | 7d498b4 | 2011-01-23 13:50:42 -0500 | [diff] [blame] | 66 | AC_ARG_ENABLE(drm-compositor, [ --enable-drm-compositor],, |
| 67 | enable_drm_compositor=yes) |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 68 | AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor == xyes) |
| 69 | if test x$enable_drm_compositor == xyes; then |
| 70 | AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor]) |
Benjamin Franzke | 060cf80 | 2011-04-30 09:32:11 +0200 | [diff] [blame] | 71 | PKG_CHECK_MODULES(DRM_COMPOSITOR, [libudev >= 136 libdrm >= 2.4.23 gbm]) |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 72 | fi |
| 73 | |
| 74 | |
Benjamin Franzke | 5d00709 | 2011-04-04 00:30:25 +0200 | [diff] [blame] | 75 | AC_ARG_ENABLE(openwfd-compositor, [ --enable-openwfd-compositor],, |
| 76 | enable_openwfd_compositor=no) |
| 77 | AM_CONDITIONAL(ENABLE_OPENWFD_COMPOSITOR, test x$enable_openwfd_compositor == xyes) |
| 78 | if test x$enable_openwfd_compositor == xyes; then |
| 79 | AC_DEFINE([BUILD_OPENWFD_COMPOSITOR], [1], [Build the OpenWF compositor]) |
Benjamin Franzke | 060cf80 | 2011-04-30 09:32:11 +0200 | [diff] [blame] | 80 | PKG_CHECK_MODULES(OPENWFD_COMPOSITOR, [openwfd gbm]) |
Benjamin Franzke | 5d00709 | 2011-04-04 00:30:25 +0200 | [diff] [blame] | 81 | fi |
| 82 | |
| 83 | |
Kristian Høgsberg | 7d498b4 | 2011-01-23 13:50:42 -0500 | [diff] [blame] | 84 | AC_ARG_ENABLE(wayland-compositor, [ --enable-wayland-compositor],, |
| 85 | enable_wayland_compositor=yes) |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 86 | AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR, |
| 87 | test x$enable_wayland_compositor == xyes) |
| 88 | if test x$enable_wayland_compositor == xyes; then |
| 89 | AC_DEFINE([BUILD_WAYLAND_COMPOSITOR], [1], |
| 90 | [Build the Wayland (nested) compositor]) |
Kristian Høgsberg | 80492e2 | 2011-04-26 11:10:32 -0400 | [diff] [blame] | 91 | PKG_CHECK_MODULES(WAYLAND_COMPOSITOR, [wayland-client wayland-egl]) |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 92 | fi |
| 93 | |
Tiago Vignatti | 93165e3 | 2011-07-21 16:35:40 +0300 | [diff] [blame] | 94 | AC_ARG_ENABLE(simple-clients, [ --enable-simple-clients],, enable_simple_clients=yes) |
| 95 | AM_CONDITIONAL(BUILD_SIMPLE_CLIENTS, test x$enable_simple_clients == xyes) |
| 96 | if test x$enable_simple_clients == xyes; then |
| 97 | AC_DEFINE([BUILD_SIMPLE_CLIENTS], [1], [Build the Wayland simple clients]) |
| 98 | PKG_CHECK_MODULES(SIMPLE_CLIENT, |
| 99 | [egl >= 7.10 glesv2 wayland-client wayland-egl]) |
| 100 | fi |
Kristian Høgsberg | a941022 | 2011-01-14 17:22:35 -0500 | [diff] [blame] | 101 | |
Kristian Høgsberg | 60c1508 | 2011-04-26 11:47:00 -0400 | [diff] [blame] | 102 | AC_ARG_ENABLE(clients, [ --enable-clients],, enable_clients=yes) |
| 103 | AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients == xyes) |
| 104 | if test x$enable_clients == xyes; then |
| 105 | AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients]) |
| 106 | |
Kristian Høgsberg | 60c1508 | 2011-04-26 11:47:00 -0400 | [diff] [blame] | 107 | 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]) |
| 108 | |
| 109 | PKG_CHECK_MODULES(POPPLER, [poppler-glib gdk-2.0 gio-2.0], |
| 110 | [have_poppler=yes], [have_poppler=no]) |
| 111 | PKG_CHECK_MODULES(CAIRO_EGL, [cairo-egl >= 1.11.3], |
| 112 | [have_cairo_egl=yes], [have_cairo_egl=no]) |
| 113 | AS_IF([test "x$have_cairo_egl" = "xyes"], |
Benjamin Franzke | 22d5481 | 2011-07-16 19:50:32 +0000 | [diff] [blame] | 114 | [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])], |
| 115 | [AC_MSG_WARN([Cairo-EGL not found - clients will use cairo image])]) |
Kristian Høgsberg | 27d3866 | 2011-10-20 13:11:12 -0400 | [diff] [blame] | 116 | |
| 117 | AC_CHECK_LIB([jpeg], [jpeg_CreateDecompress], have_jpeglib=yes) |
| 118 | if test x$have_jpeglib == xyes; then |
| 119 | CLIENT_LIBS="$CLIENT_LIBS -ljpeg" |
| 120 | else |
| 121 | AC_ERROR([libjpeg not found]) |
| 122 | fi |
| 123 | |
Kristian Høgsberg | 60c1508 | 2011-04-26 11:47:00 -0400 | [diff] [blame] | 124 | fi |
| 125 | |
| 126 | AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes") |
Kristian Høgsberg | d4de54e | 2008-12-04 22:48:50 -0500 | [diff] [blame] | 127 | |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 128 | AM_CONDITIONAL(ENABLE_DESKTOP_SHELL, true) |
| 129 | |
Kristian Høgsberg | 64f1c3f | 2011-11-14 15:50:03 -0500 | [diff] [blame] | 130 | AC_ARG_ENABLE(tablet-shell, [ --enable-tablet-shell],, |
| 131 | enable_tablet_shell=yes) |
| 132 | AM_CONDITIONAL(ENABLE_TABLET_SHELL, |
| 133 | test x$enable_tablet_shell == xyes) |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 134 | |
nobled | 48f975d | 2011-01-28 13:47:21 +0000 | [diff] [blame] | 135 | if test "x$GCC" = "xyes"; then |
Kristian Høgsberg | d4de54e | 2008-12-04 22:48:50 -0500 | [diff] [blame] | 136 | GCC_CFLAGS="-Wall -g -Wstrict-prototypes -Wmissing-prototypes -fvisibility=hidden" |
| 137 | fi |
| 138 | AC_SUBST(GCC_CFLAGS) |
| 139 | |
Kristian Høgsberg | b2d7185 | 2011-02-14 22:13:33 -0500 | [diff] [blame] | 140 | WAYLAND_SCANNER_RULES(['$(top_srcdir)/protocol']) |
| 141 | |
| 142 | AC_CONFIG_FILES([Makefile |
Pekka Paalanen | c1765c6 | 2011-12-05 15:58:11 +0200 | [diff] [blame] | 143 | shared/Makefile |
Kristian Høgsberg | f0152da | 2010-10-12 17:24:20 -0400 | [diff] [blame] | 144 | compositor/Makefile |
| 145 | clients/Makefile |
| 146 | data/Makefile]) |
Kristian Høgsberg | 4a8767b | 2008-12-10 13:44:23 -0500 | [diff] [blame] | 147 | AC_OUTPUT |