13
0

Linux installer: exclude backends from library compatibility test

Engine backends are loaded dynamically, and Ardour can start without
them. This is manly to relax the requirement of having libpulse.so.

libardour itself depends on libasound, so the ALSA backend is always
present, and the jack-backend dynamically dlopen()s libjack.
This commit is contained in:
Robin Gareus 2020-04-09 15:47:11 +02:00
parent 70f13a3ff3
commit 0f1b98c155
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -498,7 +498,7 @@ then
fi fi
# check the libs # check the libs
LIB_FILES=$(find ${BUNDLE_DIR}/lib -name "*.so" -type f) LIB_FILES=$(find ${BUNDLE_DIR}/lib -name "*.so" -type f | grep -v backends)
for path in $LIB_FILES for path in $LIB_FILES
do do