mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Package PA backend when available
This commit is contained in:
parent
384c97e12d
commit
77fbe22e55
1 changed files with 3 additions and 1 deletions
|
|
@ -415,7 +415,7 @@ done
|
|||
cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners
|
||||
|
||||
# Backends
|
||||
for backend in jack alsa dummy wavesaudio ; do
|
||||
for backend in jack alsa dummy wavesaudio pulseaudio; do
|
||||
cp $BUILD_ROOT/libs/backends/$backend/lib*.so* $Backends
|
||||
done
|
||||
|
||||
|
|
@ -563,6 +563,8 @@ while [ true ] ; do
|
|||
if echo $dep | grep -qs libjack ; then continue; fi
|
||||
# don't include ALSA
|
||||
if echo $dep | grep -qs libasound ; then continue; fi
|
||||
# nor pulse
|
||||
if echo $dep | grep -qs libpulse ; then continue; fi
|
||||
# don't include any X Window libraries
|
||||
if echo $dep | grep -qs libX\. ; then continue; fi
|
||||
if echo $dep | grep -qs libxcb ; then continue; fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue