[PD-dev] unsubscribe

2007-01-08 Thread Mathieu Bouchard
i'm unsubscribing from: pd-list pd-dev pd-announce pd-ot i will stay on: pd-cvs gem-dev gridflow-dev gridflow-cvs pdmtl dataflow (etc) and also on IRC: #dataflow #desiredata GridFlow questions are best directed to gridflow-dev (http://lists.artengine.ca/mailman/listinfo/gridflow-dev) and

Re: [PD-dev] multicast patch to OSCx

2007-01-08 Thread Stephen Sinclair
It builds on Mac OS X and GNU/Linux (i.e. works on UNIX), but dies on Windows/MinGW: Hello, You can find my patch for this on the patch tracker. I still don't know why the changes don't seem to work for sendOSC in Windows, but at least it compiles correctly now. Steve

[PD-dev] text placement

2007-01-08 Thread Hans-Christoph Steiner
Can anyone point me to where the text is placed on the canvas in relation to the object and message boxes? It seems to vary depending on platform and I'd like to troubleshoot it. .hc As we enjoy great advantages

Re: [PD-dev] text placement

2007-01-08 Thread martin.peach
You mean the labels? In g_all_guis.c: void iemgui_label(void *x, t_iemgui *iemgui, t_symbol *s) and void iemgui_label_pos(void *x, t_iemgui *iemgui, t_symbol *s, int ac, t_atom *av) The x_lab and y_lab items can be set in u_main.tk, they are the x_off and y_off parameters for some of the guis.

Re: [PD-dev] pd-extended build system questions

2007-01-08 Thread Hans-Christoph Steiner
On Jan 8, 2007, at 1:21 PM, Georg Holzmann wrote: Hallo! Okay, I build now a shared library because I have a lot of shared code - it will be installed in the same directory as the pd externals. Hm - I just noted that the shared library can't be found now... Where do I have to install

Re: [PD-dev] pd-extended build system questions

2007-01-08 Thread carmen
On Mon Jan 08, 2007 at 04:30:20PM -0500, Hans-Christoph Steiner wrote: On Jan 8, 2007, at 1:21 PM, Georg Holzmann wrote: Hallo! Okay, I build now a shared library because I have a lot of shared code - it will be installed in the same directory as the pd externals. Hm - I just noted

Re: [PD-dev] pd-extended build system questions

2007-01-08 Thread Georg Holzmann
Hallo! Wow, that's great that you have a shared library already! Since Pd-extended is built with gcc on all platforms, porting the build process to other platforms isn't too difficult, its mostly a matter of getting the right flags, which are listed in externals/Makefile. It (should) build

Re: [PD-dev] pd-extended build system questions

2007-01-08 Thread Georg Holzmann
Hallo! So is there a way how the externals can find the shared library, whithout copying it into a global library path like /usr/lib/ ? It seems that the only way is, to add the /full/path/to/installed/library/directory to the LD_LIBRARY_PATH variable before starting pd ... I think you

Re: [PD-dev] pd-extended build system questions

2007-01-08 Thread carmen
On Tue Jan 09, 2007 at 12:03:14AM +0100, Georg Holzmann wrote: Hallo! So is there a way how the externals can find the shared library, whithout copying it into a global library path like /usr/lib/ ? It seems that the only way is, to add the /full/path/to/installed/library/directory to