Enable all compositors by default
authorKristian Høgsberg <krh@bitplanet.net>
Sun, 23 Jan 2011 18:50:42 +0000 (13:50 -0500)
committerKristian Høgsberg <krh@bitplanet.net>
Sun, 23 Jan 2011 18:50:42 +0000 (13:50 -0500)
configure.ac

index bcc1e83..0f6f9ff 100644 (file)
@@ -39,14 +39,16 @@ if test x$enable_x11_compositor == xyes; then
 fi
 
 
-AC_ARG_ENABLE(drm-compositor, [  --enable-drm-compositor])
+AC_ARG_ENABLE(drm-compositor, [  --enable-drm-compositor],,
+             enable_drm_compositor=yes)
 AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor == xyes)
 if test x$enable_drm_compositor == xyes; then
   AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
 fi
 
 
-AC_ARG_ENABLE(wayland-compositor, [  --enable-wayland-compositor])
+AC_ARG_ENABLE(wayland-compositor, [  --enable-wayland-compositor],,
+             enable_wayland_compositor=yes)
 AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
               test x$enable_wayland_compositor == xyes)
 if test x$enable_wayland_compositor == xyes; then