From 51555a85ccf0e85b05ccc5723ed52e992ed0048e Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 21 Jun 2019 10:58:30 -0700 Subject: [PATCH] Enable Raspberry Pi video by default --- configure | 4 ++-- configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index ee02d41f0e6af..fb7d422009cf0 100755 --- a/configure +++ b/configure @@ -1626,7 +1626,7 @@ Optional Features: QtWayland server support for Wayland video driver [[default=yes]] --enable-wayland-shared dynamically load Wayland support [[default=maybe]] - --enable-video-rpi use Raspberry Pi video driver [[default=no]] + --enable-video-rpi use Raspberry Pi video driver [[default=yes]] --enable-video-x11 use X11 video driver [[default=yes]] --enable-x11-shared dynamically load X11 support [[default=maybe]] --enable-video-x11-xcursor @@ -19734,7 +19734,7 @@ CheckRPI() if test "${enable_video_rpi+set}" = set; then : enableval=$enable_video_rpi; else - enable_video_rpi=no + enable_video_rpi=yes fi if test x$enable_video = xyes -a x$enable_video_rpi = xyes; then diff --git a/configure.ac b/configure.ac index 85b9a4bb344c7..13eb448897dc6 100644 --- a/configure.ac +++ b/configure.ac @@ -1550,8 +1550,8 @@ CheckNativeClient() CheckRPI() { AC_ARG_ENABLE(video-rpi, -AS_HELP_STRING([--enable-video-rpi], [use Raspberry Pi video driver [[default=no]]]), - , enable_video_rpi=no) +AS_HELP_STRING([--enable-video-rpi], [use Raspberry Pi video driver [[default=yes]]]), + , enable_video_rpi=yes) if test x$enable_video = xyes -a x$enable_video_rpi = xyes; then PKG_CHECK_MODULES([RPI], [bcm_host brcmegl], video_rpi=yes, video_rpi=no)