i would like to sync pd and hydrogen using jack transport. i found an old object called "jack_transport" and tried to compile it, but i got an error due to a function which is now deprecated. Here's the output:
athos@athos-laptop:~/Pure Data/jack-transport$ make cc -DPD -O3 -fPIC -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch -g -I./pd-source-042/pd/src -o jack_transport.o -c jack_transport.c cc1: warnings being treated as errors jack_transport.c: In function ‘jack_transport_connect’: jack_transport.c:47: error: ‘jack_client_new’ is deprecated (declared at /usr/include/jack/jack.h:122) make: *** [jack_transport.pd_linux] Errore 1
is there either a way to fix this, or another object i could use or another method to achieve what i need?
thanks, athos
Hi Athos, this is because the "-Werror" flag tells gcc to make all warnings into errors. In the makefile, try removing this flag from the LINUXCFLAGS line.
Patrick
On Sun, Jun 26, 2011 at 8:12 PM, athos bacchiocchi athos.bacchiocchi@gmail.com wrote:
i would like to sync pd and hydrogen using jack transport. i found an old object called "jack_transport" and tried to compile it, but i got an error due to a function which is now deprecated. Here's the output:
athos@athos-laptop:~/Pure Data/jack-transport$ make cc -DPD -O3 -fPIC -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch -g -I./pd-source-042/pd/src -o jack_transport.o -c jack_transport.c cc1: warnings being treated as errors jack_transport.c: In function ‘jack_transport_connect’: jack_transport.c:47: error: ‘jack_client_new’ is deprecated (declared at /usr/include/jack/jack.h:122) make: *** [jack_transport.pd_linux] Errore 1
is there either a way to fix this, or another object i could use or another method to achieve what i need?
thanks, athos
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
2011/6/27 Patrick Boivin pboivin@gmail.com
Hi Athos, this is because the "-Werror" flag tells gcc to make all warnings into errors. In the makefile, try removing this flag from the LINUXCFLAGS line.
it compiled. thanks patrick! (why such an object didn't become a "stable" part of pd-extended? Instead it seems to have been dropped.)
athos
On Jun 30, 2011, at 6:27 AM, athos bacchiocchi wrote:
2011/6/27 Patrick Boivin pboivin@gmail.com Hi Athos, this is because the "-Werror" flag tells gcc to make all warnings into errors. In the makefile, try removing this flag from the LINUXCFLAGS line.
it compiled. thanks patrick! (why such an object didn't become a "stable" part of pd-extended?
Instead it seems to have been dropped.)
Getting things into Pd-extended is a matter of someone willing to do
the work of getting it in, and keeping it up-to-date. That's all it
takes. If no one steps up and does the work, it won't happen.
.hc
You can't steal a gift. Bird gave the world his music, and if you can
hear it, you can have it. - Dizzy Gillespie
athos bacchiocchi wrote:
i would like to sync pd and hydrogen using jack transport.
Another way to do it could be to use midi: hydrogen has midi learn functionality.
Lorenzo.
i found an old object called "jack_transport" and tried to compile it, but i got an error due to a function which is now deprecated. Here's the output:
athos@athos-laptop:~/Pure Data/jack-transport$ make cc -DPD -O3 -fPIC -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch -g -I./pd-source-042/pd/src -o jack_transport.o -c jack_transport.c cc1: warnings being treated as errors jack_transport.c: In function ‘jack_transport_connect’: jack_transport.c:47: error: ‘jack_client_new’ is deprecated (declared at /usr/include/jack/jack.h:122) make: *** [jack_transport.pd_linux] Errore 1
is there either a way to fix this, or another object i could use or another method to achieve what i need?
thanks, athos
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Lorenzo Sutton wrote:
athos bacchiocchi wrote:
i would like to sync pd and hydrogen using jack transport.
Another way to do it could be to use midi: hydrogen has midi learn functionality.
Or on second thought you could also use osc together with jack.osc part of the jack-tools (http://slavepianos.org/rd/f/552375/) and then a patch like the one attahed (needs mrpeach library)
Lorenzo
i found an old object called "jack_transport" and tried to compile it, but i got an error due to a function which is now deprecated. Here's the output:
athos@athos-laptop:~/Pure Data/jack-transport$ make cc -DPD -O3 -fPIC -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch -g -I./pd-source-042/pd/src -o jack_transport.o -c jack_transport.c cc1: warnings being treated as errors jack_transport.c: In function ‘jack_transport_connect’: jack_transport.c:47: error: ‘jack_client_new’ is deprecated (declared at /usr/include/jack/jack.h:122) make: *** [jack_transport.pd_linux] Errore 1
is there either a way to fix this, or another object i could use or another method to achieve what i need?
thanks, athos
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list