[PD] Compiling Pd in Sabayon

2014-01-17 Thread Alexandros Drymonitis
Having had some problems with audio drop outs in Ubuntu, I am now giving Sabayon 14.01 a try. I'm trying to compile Pd, ./autogen.sh seemed to work fine, but when I type ./configure --enable-jack things go wrong. At the end of configure I get these messages: ./configure: line 15417: syntax error

Re: [PD] Compiling Pd in Sabayon

2014-01-17 Thread Miller Puckette
This is not really an answer (of course it would be nice if the automake think worked!) but speaking for my self, I only compile Pd the 'dumb' way: cd pd/srcv make -f makefile.gnu (If you want jack support you have to throw 'make' a flag to enble it). cheers Miller On Thu, Jan 16, 2014 at

Re: [PD] libpd separating gui from core

2014-01-17 Thread Lorenzo Sutton
On 13/01/2014 15:32, Dan Wilcox wrote: As Hans has proposed for years, IMO this is really the only way to perhaps solve the PD gui development doesn't move fast enough problem in the long term. In this case, Miller would have the core (in libpd) the pd-vanilla wrapper gui formally separated

[PD] [list prepend] without a space

2014-01-17 Thread Jonghyun Kim
Hi list, For OSC communication, I wonder to know how to do it. My original list(not exactly list but I say so) is: *test 1 2 3* Prepend symbols are: (prepend twice or more) */abc* */def* I want to do it [test 1 2 3( | [t a b] | \ |[symbol */abc*] | \

[PD] Tcl Invalid Command Name Error, using iostream

2014-01-17 Thread Esler,Robert Wadhams
Greetings, I've notice quite a bit of discussion about this error, though none in relation to my current discovery. I have a custom external that works great w/o errors in Pd-0.45-4 and Pd-extended-42.5, but throws the following error when trying to create it in Pd-extended-43.4.

Re: [PD] [list prepend] without a space

2014-01-17 Thread Jonghyun Kim
Thanks Fred, yes your way is useful, but my problem is I don't know how long the list. For all that, I can't make message like [$1$2 $3 $4 $5 $6forever? ( It isn't formalized and the form of the list, is unknown. Greetings, Jong On Fri, Jan 17, 2014 at 6:38 PM, Fred Jan Kraan

[PD] [netsend](tcp) is much faster than [udpsend] why??

2014-01-17 Thread Jonghyun Kim
Hi list, I found this result that [netsend] (tcp) is much faster than [udsend]. It tested on between Mac and Ubuntu connected within eth0. I don't know why udpsend is much slower than netsend. Normally tcp is slower than udp, but netsend with tcp is faster than udpsend. It's strange. Who know

Re: [PD] [list prepend] without a space

2014-01-17 Thread Jonghyun Kim
The unknown list in example. There is no rules or form. == test 1 2 3 file computer 2.14 4423 I love you much forever 3234 days 44.2 degree == On Fri, Jan 17, 2014 at 6:43 PM, Jonghyun Kim agitato...@gmail.com wrote: Thanks Fred, yes your way is useful, but my

Re: [PD] [list prepend] without a space

2014-01-17 Thread Cyrille Henry
Le 16/01/2014 12:06, Jonghyun Kim a écrit : Hi list, For OSC communication, I wonder to know how to do it. My original list(not exactly list but I say so) is: *test 1 2 3* Prepend symbols are: (prepend twice or more) */abc* */def* I want to do it [test 1 2 3( | [t a b] |

Re: [PD] [list prepend] without a space

2014-01-17 Thread Jack
Hello Jong, See patch attached, it could help you... ++ Jack Le 16/01/2014 12:06, Jonghyun Kim a écrit : Hi list, For OSC communication, I wonder to know how to do it. My original list(not exactly list but I say so) is: *test 1 2 3* Prepend symbols are: (prepend twice or more) */abc*

Re: [PD] Tcl Invalid Command Name Error, using iostream

2014-01-17 Thread Jonathan Wilkes
I don't know the particulars, but it's quite possible you are injecting junk into the middle of a stream of data heading for the gui.  I'd guess there is an unterminated message in a sys_vgui call-- i.e., one with a \\\n, possibly in a loop-- and a matching sys_gui or vgui call with a

Re: [PD] [list prepend] without a space

2014-01-17 Thread Jonghyun Kim
Wow! thanks Jack! It's a good point. On Fri, Jan 17, 2014 at 7:34 PM, Jack j...@rybn.org wrote: Hello Jong, See patch attached, it could help you... ++ Jack Le 16/01/2014 12:06, Jonghyun Kim a écrit : Hi list, For OSC communication, I wonder to know how to do it. My original

Re: [PD] [PD-announce] PuREST JSON 1.0.0 and 1.0.0-json-c-0.10 released

2014-01-17 Thread me.grimm
h... as soon as I try this on a production machine (not dev machine i compiled on) I get error in the pd console with the-sound-of-money.pd example: Error while performing request: Problem with the SSL CA cert (path? access rights?) what could this be? libcurl.dylib permission stuff? im

Re: [PD] Compiling Pd in Sabayon

2014-01-17 Thread Roman Haefeli
On Don, 2014-01-16 at 12:50 +0200, Alexandros Drymonitis wrote: Having had some problems with audio drop outs in Ubuntu, I am now giving Sabayon 14.01 a try. I'm trying to compile Pd, ./autogen.sh seemed to work fine, but when I type ./configure --enable-jack things go wrong. At the end of

Re: [PD] [netsend](tcp) is much faster than [udpsend] why??

2014-01-17 Thread Roman Haefeli
On Fre, 2014-01-17 at 18:48 +0100, Jonghyun Kim wrote: I found this result that [netsend] (tcp) is much faster than [udsend]. It tested on between Mac and Ubuntu connected within eth0. I don't know why udpsend is much slower than netsend. What are you measuring: throughput or latency? Maybe

[PD] compiling Pd 0.45 on Linux

2014-01-17 Thread Max
Hi List, I am on Linux Mint 16 Cinnamon 64Bit and i want to compile Pd 0.45. Here is my experience: pd-0.45-3/ $ ./autogen.sh autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force -I m4/generated -I m4 autoreconf: configure.ac: tracing

Re: [PD] [netsend](tcp) is much faster than [udpsend] why??

2014-01-17 Thread Jonghyun Kim
I mean latency. I send OSC data in every 10ms over eth0 lan cable. With udpsend and udpreceive there is some latency, but netsend (tcp) was all ok. Jong On Fri, Jan 17, 2014 at 10:14 PM, Roman Haefeli reduz...@gmail.com wrote: On Fre, 2014-01-17 at 18:48 +0100, Jonghyun Kim wrote: I found