13
0

on linux, build ALSA backend as part of binary bundle, but don't include libdbus in bundle

This commit is contained in:
Paul Davis 2014-07-11 10:40:45 -04:00
parent 6990c31ed5
commit 1f501ef940
2 changed files with 3 additions and 1 deletions

View File

@ -473,6 +473,8 @@ while [ true ] ; do
if echo $dep | grep -qs 'libc\.' ; then continue; fi
# don't include libstdc++
if echo $dep | grep -qs libstdc++ ; then continue; fi
# don't include libdbus
if echo $dep | grep -qs libdbus ; then continue; fi
base=`basename $dep`
if ! test -f $Libraries/$base; then

View File

@ -11,7 +11,7 @@ fi
cd $BASE || exit 1
git pull || exit 1
./waf configure $* --strict --noconfirm --also-libdir=$HOME/a3/inst/lib --also-include=$HOME/gtk/inst/include || exit 1
./waf configure $* --strict --noconfirm --also-libdir=$HOME/a3/inst/lib --also-include=$HOME/gtk/inst/include --with-alsabackend || exit 1
./waf || exit 1
cd tools/linux_packaging || exit 1
./build --public --harvid --strip some || exit 1