From 15d71bafb992d7ef30b5331f2b38c98550ea7712 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 20 Apr 2018 19:40:41 +0100 Subject: [PATCH] Extra toxic compile options --- src/freedombone-app-tox | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/freedombone-app-tox b/src/freedombone-app-tox index f8cf7ca2..18e2de00 100755 --- a/src/freedombone-app-tox +++ b/src/freedombone-app-tox @@ -693,12 +693,12 @@ function mesh_tox_client { chroot "${rootdir}" apt-get -yq install libncursesw5-dev libconfig-dev libqrencode-dev chroot "${rootdir}" apt-get -yq install libcurl4-openssl-dev libvpx-dev libopenal-dev chroot "${rootdir}" apt-get -yq install libqrencode-dev libpng-dev libncurses5-dev libalut-dev - chroot "${rootdir}" apt-get -yq install libnotify-dev + chroot "${rootdir}" apt-get -yq install libnotify-dev python3-dev toxic_disable_notify=0 else apt-get -yq install libncursesw5-dev libconfig-dev libqrencode-dev apt-get -yq install libcurl4-openssl-dev libvpx-dev libopenal-dev - apt-get -yq install libqrencode-dev libpng-dev libncurses5-dev libalut-dev + apt-get -yq install libqrencode-dev libpng-dev libncurses5-dev libalut-dev python3-dev toxic_disable_notify=1 fi @@ -717,6 +717,9 @@ function mesh_tox_client { echo "cd $INSTALL_DIR/toxic"; echo "git checkout $TOXIC_COMMIT -b $TOXIC_COMMIT"; echo "export DISABLE_DESKTOP_NOTIFY=$toxic_disable_notify"; + echo "export DISABLE_AV=$toxic_disable_notify"; + echo "export DISABLE_X11=$toxic_disable_notify"; + echo "export DISABLE_SOUND_NOTIFY=$toxic_disable_notify"; echo 'if ! make; then'; echo ' exit 1'; echo 'fi';