From 1f501ef94023d2911e9542b70668455e0aa72a10 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 11 Jul 2014 10:40:45 -0400 Subject: [PATCH] on linux, build ALSA backend as part of binary bundle, but don't include libdbus in bundle --- tools/linux_packaging/build | 2 ++ tools/linux_packaging/noderun | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index 4e8ef72c47..3a4e748fe6 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -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 diff --git a/tools/linux_packaging/noderun b/tools/linux_packaging/noderun index a6357ef488..80c96af111 100644 --- a/tools/linux_packaging/noderun +++ b/tools/linux_packaging/noderun @@ -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