On 01/22/2015 11:51 AM, Alexandros Drymonitis wrote:
I just tried to compile this version of Pd by following the instructions (after installing automake and libtool via apt-get) but the Pi couldn't make it.
This is the configuration summary (with --enable-jack) Configuration summary:
Target ...................... armv6l-unknown-linux-gnueabihf C++ bindings ................ no Debug output ................ no
ALSA ........................ no ASIHPI ...................... no
OSS ......................... yes JACK ........................ no
Jack is installed in the pi, alsa too...
and this is what I get at the end of make: make[2]: Leaving directory '/home/pi/applications/pd-0.46-4/src' Making all in man make[2]: Entering directory '/home/pi/applications/pd-0.46-4/man' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/pi/applications/pd-0.46-4/man' Making all in tcl make[2]: Entering directory '/home/pi/applications/pd-0.46-4/tcl' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/pi/applications/pd-0.46-4/tcl' Making all in po make[2]: Entering directory '/home/pi/applications/pd-0.46-4/po' msgfmt --check --tcl --locale=af -d . af.po /bin/bash: msgfmt: command not found Makefile:532: recipe for target 'af.msg' failed make[2]: *** [af.msg] Error 127 make[2]: Leaving directory '/home/pi/applications/pd-0.46-4/po' Makefile:847: recipe for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory '/home/pi/applications/pd-0.46-4' Makefile:746: recipe for target 'all' failed make: *** [all] Error 2
The Pi is running on the latest Raspbian you can find on their website. Am I doing something wrong?
you are missing some build-dependencies (namely "gettext"). you should always start with: # apt-get build-dep puredata
gfmdsar IOhannes