From a3db42813831d0ec8add7e06a6ffbfa3140b75f4 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@vt.edu>
Date: Wed, 8 Oct 2014 22:52:33 -0400
Subject: [PATCH] *improved installer to make it easier to recompile pd-l2ork
 when continuing development after building a snapshot deb or tarball
 installer (the pd folder will retain config script with the appropriate
 --prefix flag)

---
 l2ork_addons/tar_em_up.sh | 2 ++
 packages/Makefile         | 5 ++++-
 pd/src/pd-l2ork-TODO.txt  | 1 -
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/l2ork_addons/tar_em_up.sh b/l2ork_addons/tar_em_up.sh
index aa789b47a..4cb1dfee8 100755
--- a/l2ork_addons/tar_em_up.sh
+++ b/l2ork_addons/tar_em_up.sh
@@ -75,6 +75,8 @@ do case $Option in
 	esac
 done
 
+export TAR_EM_UP_PREFIX=$inst_dir
+
 cd ../
 
 if [ $core -eq 1 ]
diff --git a/packages/Makefile b/packages/Makefile
index 3d74018f4..9d2b5dfb6 100644
--- a/packages/Makefile
+++ b/packages/Makefile
@@ -112,7 +112,10 @@ ifeq ($(OS_NAME),darwin)
   PD_CONFIGURE_FLAGS = --enable-jack
 else
   ifeq ($(OS_NAME),linux)
-    PD_CONFIGURE_FLAGS = --enable-jack --enable-alsa --enable-fftw
+    PD_CONFIGURE_FLAGS = --enable-jack --enable-alsa --enable-fftw --enable-qt
+    ifneq ($(TAR_EM_UP_PREFIX), )
+      PD_CONFIGURE_FLAGS +=  --prefix=$(TAR_EM_UP_PREFIX)
+    endif
   else
     PD_CONFIGURE_FLAGS = 
   endif
diff --git a/pd/src/pd-l2ork-TODO.txt b/pd/src/pd-l2ork-TODO.txt
index 78b5025c2..48cd21ef4 100644
--- a/pd/src/pd-l2ork-TODO.txt
+++ b/pd/src/pd-l2ork-TODO.txt
@@ -1,5 +1,4 @@
 C:
-*test backporting blocksize (how do we do this beyond reporting accurate values? latency changes are not noticeable at all)
 *array in s-env draws on top of cnv, which it shouldn't (requires redrawing of the entire GOP, do we really want to do this?--this should solve itself once we decide to update rather than redraw messages)
 *messages should be aware of $0?
 *verbosity level for the console
-- 
GitLab