diff options
author | Armin K <krejzi@email.com> | 2013-08-14 03:13:53 +0200 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2013-08-20 16:11:09 -0700 |
commit | 643f9bdfe0832b983b377b1e3cb5ef64e15f619a (patch) | |
tree | 1ffb364cab304b85948859dd09cb8c6f4afeecd5 | |
parent | afe2ab604caa2f66802855467035f0ae48366fc9 (diff) | |
download | weston-643f9bdfe0832b983b377b1e3cb5ef64e15f619a.tar.gz weston-643f9bdfe0832b983b377b1e3cb5ef64e15f619a.tar.bz2 weston-643f9bdfe0832b983b377b1e3cb5ef64e15f619a.zip |
autotools: Add configure summary
-rw-r--r-- | configure.ac | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e36b7f74..fab0b48b 100644 --- a/configure.ac +++ b/configure.ac @@ -226,6 +226,7 @@ AC_ARG_WITH(cairo-glesv2, [Use GLESv2 cairo])) if test "x$with_cairo_glesv2" = "xyes"; then cairo_modules="cairo-glesv2" + with_cairo="glesv2" fi if test "x$cairo_modules" = "xcairo-glesv2"; then @@ -285,7 +286,8 @@ if test x$enable_clients = xyes; then [have_cairo_egl=yes], [have_cairo_egl=no]) AS_IF([test "x$have_cairo_egl" = "xyes"], [AC_DEFINE([HAVE_CAIRO_EGL], [1], [Have cairo-egl])], - [AC_ERROR([cairo-egl not used because $CAIRO_EGL_PKG_ERRORS])])]) + [AC_ERROR([cairo-egl not used because $CAIRO_EGL_PKG_ERRORS])])], + [have_cairo_egl=no]) PKG_CHECK_MODULES(PANGO, [pangocairo], [have_pango=yes], [have_pango=no]) fi @@ -438,3 +440,42 @@ AC_CONFIG_FILES([Makefile man/Makefile tests/Makefile]) AC_OUTPUT + +AC_MSG_RESULT([ + Native Backend ${WESTON_NATIVE_BACKEND} + setuid Install ${enable_setuid_install} + + Cairo Renderer ${with_cairo} + EGL ${enable_egl} + libxkbcommon ${enable_xkbcommon} + XWayland ${enable_xwayland} + + Build wcap utility ${enable_wcap_tools} + Build Tablet Shell ${enable_tablet_shell} + + weston-launch utility ${enable_weston_launch} + weston-launch systemd support ${have_systemd_login} + + DRM Compositor ${enable_drm_compositor} + X11 Compositor ${enable_x11_compositor} + Wayland Compositor ${enable_wayland_compositor} + Headless Compositor ${enable_headless_compositor} + RPI Compositor ${enable_rpi_compositor} + FBDEV Compositor ${enable_fbdev_compositor} + RDP Compositor ${enable_rdp_compositor} + + Raspberry Pi BCM headers ${have_bcm_host} + + Build Clients ${enable_clients} + Build EGL Clients ${have_cairo_egl} + Build Simple Clients ${enable_simple_clients} + Build Simple EGL Clients ${enable_simple_egl_clients} + + Install Demo Clients ${enable_demo_clients} + + Colord Support ${have_colord} + GLU Support ${have_glu} + LCMS2 Support ${have_lcms} + libwebp Support ${have_webp} + libunwind Support ${have_libunwind} +]) |