summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Chary <corentin.chary@gmail.com>2011-06-14 16:51:22 +0200
committerKristian Høgsberg <krh@bitplanet.net>2012-03-27 09:31:57 -0400
commitdcb658eedabc8239cd705848b8e5674095d74a9c (patch)
tree98e1e4e83a36c0b2f2bb20fee9837340acf80649
parent4f7d51ead912aafddc76dade889f99cb1c69f52d (diff)
xwayland: add an option to enable/disable xwayland
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8c16a32b7..786e7e8c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -626,6 +626,7 @@ AC_ARG_ENABLE(windowswm, AS_HELP_STRING([--enable-windowswm], [Build XWin w
AC_ARG_ENABLE(libdrm, AS_HELP_STRING([--enable-libdrm], [Build Xorg with libdrm support (default: enabled)]), [DRM=$enableval],[DRM=yes])
AC_ARG_ENABLE(clientids, AS_HELP_STRING([--disable-clientids], [Build Xorg with client ID tracking (default: enabled)]), [CLIENTIDS=$enableval], [CLIENTIDS=yes])
AC_ARG_ENABLE(pciaccess, AS_HELP_STRING([--enable-pciaccess], [Build Xorg with pciaccess library (default: enabled)]), [PCI=$enableval], [PCI=yes])
+AC_ARG_ENABLE(wayland, AS_HELP_STRING([--disable-wayland], [Build Wayland extension (default: enabled)]), [WAYLAND=$enableval], [WAYLAND=yes])
dnl DDXes.
AC_ARG_ENABLE(xorg, AS_HELP_STRING([--enable-xorg], [Build Xorg server (default: auto)]), [XORG=$enableval], [XORG=auto])
@@ -990,7 +991,6 @@ if test "x$COMPOSITE" = xyes; then
COMPOSITE_INC='-I$(top_srcdir)/composite'
fi
-WAYLAND=yes
AM_CONDITIONAL(WAYLAND, [test "x$WAYLAND" = xyes])
if test "x$WAYLAND" = xyes; then
AC_DEFINE(XORG_WAYLAND, 1, [Support wayland mode])