From bafbbc8a1a6622879c28f8e497c39d6c99381e8d Mon Sep 17 00:00:00 2001 From: LibretroAdmin Date: Tue, 6 Sep 2022 17:40:36 +0200 Subject: [PATCH] Don't bake in OpenAL and libcaca by default unless explicitly enabled with configure switch. Reasons: * Libcaca video driver support seems half baked, can't even render RGUI right now on Windows. Not worth the troubleshooting for regular users or the DLL linkage (which adds to filesize) until further developed * Better native audio driver alternatives exist for OpenAL on both Windows and Linux --- qb/config.params.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qb/config.params.sh b/qb/config.params.sh index 84fc26103c..bfa7909c16 100644 --- a/qb/config.params.sh +++ b/qb/config.params.sh @@ -14,7 +14,7 @@ HAVE_CONFIGFILE=yes # Config file support HAVE_GDI=yes # GDI support (Win32-only) HAVE_OPENGLES_LIBS= # Link flags for custom GLES library HAVE_OPENGLES_CFLAGS= # C-flags for custom GLES library -HAVE_CACA=auto # Libcaca support +HAVE_CACA=no # Libcaca support HAVE_SIXEL=auto # Libsixel support HAVE_DEBUG=no # Enable a debug build HAVE_LIBRETRODB=yes # Libretrodb support @@ -117,7 +117,7 @@ HAVE_AUDIOIO=auto # AudioIO support HAVE_OSS=auto # OSS support HAVE_RSOUND=auto # RSound support HAVE_ROAR=auto # RoarAudio support -HAVE_AL=auto # OpenAL support +HAVE_AL=no # OpenAL support HAVE_JACK=auto # JACK support HAVE_COREAUDIO=auto # CoreAudio support HAVE_COREAUDIO3=no # CoreAudio3 support