From 5fae3e7c9e5056495e5818dc0b170995a4013990 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 20 May 2018 19:44:35 +0200 Subject: [PATCH] SDL2: enable x11, opengl and pulse on aarch64 We can use desktop OpenGL as well as X11 with the open source graphics stack on Tegra hardware besides others, so enable options to match x86. --- srcpkgs/SDL2/template | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/srcpkgs/SDL2/template b/srcpkgs/SDL2/template index 8ccffac107e..d7fbe33bd63 100644 --- a/srcpkgs/SDL2/template +++ b/srcpkgs/SDL2/template @@ -1,7 +1,7 @@ # Template file for 'SDL2' pkgname=SDL2 version=2.0.8 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-alsa --disable-esd --disable-rpath --enable-libudev --enable-clock_gettime --disable-nas --disable-arts --disable-x11-shared @@ -22,6 +22,9 @@ case "$XBPS_TARGET_MACHINE" in i686*|x86_64*) build_options_default="opengl pulseaudio x11" ;; + aarch64*) + build_options_default="gles opengl pulseaudio x11" + ;; arm*) # Enable OpenGL/ES on rpi platforms build_options_default="gles"