mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
qb: Add a fallback path for jack audio without pkg-config
This is a proof of concept for the fallback path without pkg-config. As jack is something often not installed by default it demonstrates that when pkg-config exists and the dependency doesn't the check_val function in qb/qb.libs.sh will redundantly check -ljack and as expected, fail. It also shows that when pkg-config is not installed and jack is enabled with --enable-jack it will bail and print a configure error.
This commit is contained in:
parent
a37d624967
commit
c96ae959b3
@ -261,6 +261,8 @@ check_pkgconf PULSE libpulse
|
||||
check_pkgconf SDL sdl 1.2.10
|
||||
check_pkgconf SDL2 sdl2 2.0.0
|
||||
|
||||
check_val '' JACK -ljack
|
||||
|
||||
if [ "$HAVE_SDL2" = 'yes' ]; then
|
||||
if [ "$HAVE_SDL2" = 'yes' ] && [ "$HAVE_SDL" = 'yes' ]; then
|
||||
die : 'Notice: SDL drivers will be replaced by SDL2 ones.'
|
||||
|
Loading…
Reference in New Issue
Block a user