[vlc-commits] configure: disable Wayland by default
    Rémi Denis-Courmont 
    git at videolan.org
       
    Wed Jun 27 21:49:22 CEST 2018
    
    
  
vlc/vlc-3.0 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Jun 27 22:48:46 2018 +0300| [4606efc7c6208d9e92f27ecce210a5dda9dcbb8f] | committer: Rémi Denis-Courmont
configure: disable Wayland by default
This was not ready when 3.0 was branched. Better use VLC on Xwayland.
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=4606efc7c6208d9e92f27ecce210a5dda9dcbb8f
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index b0de9fc1d7..1af57da606 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3125,11 +3125,11 @@ dnl
 dnl  Wayland
 dnl
 AC_ARG_ENABLE(wayland,
-  [AS_HELP_STRING([--enable-wayland], [Wayland support (default auto)])])
+  [AS_HELP_STRING([--enable-wayland], [Incomplete Wayland support (default disabled)])])
 have_wayland="no"
 have_wayland_egl="no"
 
-AS_IF([test "${enable_wayland}" != "no"], [
+AS_IF([test "${enable_wayland}" = "yes"], [
   PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= 1.5.91], [
     AC_MSG_CHECKING([for the Wayland protocols])
     PKG_CHECK_EXISTS([wayland-protocols >= 1.4], [
    
    
More information about the vlc-commits
mailing list