Skip to content
Snippets Groups Projects
Commit a3db4281 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

*improved installer to make it easier to recompile pd-l2ork when continuing...

*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)
parent 607ffb75
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,8 @@ do case $Option in
esac
done
export TAR_EM_UP_PREFIX=$inst_dir
cd ../
if [ $core -eq 1 ]
......
......@@ -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
......
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment