mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-05-02 06:46:26 -04:00
Enable all compositors by default
This commit is contained in:
parent
6fea3dc5ce
commit
7d498b4f1a
1 changed files with 4 additions and 2 deletions
|
|
@ -39,14 +39,16 @@ if test x$enable_x11_compositor == xyes; then
|
||||||
fi
|
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)
|
AM_CONDITIONAL(ENABLE_DRM_COMPOSITOR, test x$enable_drm_compositor == xyes)
|
||||||
if test x$enable_drm_compositor == xyes; then
|
if test x$enable_drm_compositor == xyes; then
|
||||||
AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
|
AC_DEFINE([BUILD_DRM_COMPOSITOR], [1], [Build the DRM compositor])
|
||||||
fi
|
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,
|
AM_CONDITIONAL(ENABLE_WAYLAND_COMPOSITOR,
|
||||||
test x$enable_wayland_compositor == xyes)
|
test x$enable_wayland_compositor == xyes)
|
||||||
if test x$enable_wayland_compositor == xyes; then
|
if test x$enable_wayland_compositor == xyes; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue