[PD-dev] [ pure-data-Bugs-3273848 ] problem editing object boxes of GOP-enabled abstractions

2011-04-04 Thread SourceForge.net
Bugs item #3273848, was opened at 2011-04-04 13:11 Message generated for change (Tracker Item Submitted) made by sistisette You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=3273848group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3273884 ] mouse wheel scrolling doesn't work properly

2011-04-04 Thread SourceForge.net
Bugs item #3273884, was opened at 2011-04-04 13:31 Message generated for change (Tracker Item Submitted) made by sistisette You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=3273884group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] flext and gnu/windows - 'undefined reference' with pd global vars?

2011-04-04 Thread dmotd
fwd'd from flext list.. background: i've been working on a new autotools template for flext based libs and started testing on windows platform with cygwin + mingw, immediate issues with building flext lib itself. have any pd-devs experienced this 'undefined reference' issue with the linker?

Re: [PD-dev] flext and gnu/windows - 'undefined reference' with pd global vars?

2011-04-04 Thread Hans-Christoph Steiner
'undefined reference' generally means that the linker has found symbols in the .o files that it can't find a reference to. I.e. take the function 'foo', if myobject.o uses foo() from the bar lib, and the bar lib is not including the linking, because its not specified or not in the lib

Re: [PD-dev] flext and gnu/windows - 'undefined reference' with pd global vars?

2011-04-04 Thread dmotd
On 04/05/2011 01:14 AM, Hans-Christoph Steiner wrote: 'undefined reference' generally means that the linker has found symbols in the .o files that it can't find a reference to. I.e. take the function 'foo', if myobject.o uses foo() from the bar lib, and the bar lib is not including the linking,

Re: [PD-dev] flext and gnu/windows - 'undefined reference' with pd global vars?

2011-04-04 Thread Thomas Grill
Am 04.04.2011 um 17:46 schrieb dmotd: On 04/05/2011 01:14 AM, Hans-Christoph Steiner wrote: 'undefined reference' generally means that the linker has found symbols in the .o files that it can't find a reference to. I.e. take the function 'foo', if myobject.o uses foo() from the bar lib,

Re: [PD-dev] flext and gnu/windows - 'undefined reference' with pd global vars?

2011-04-04 Thread martin.peach
On 04/05/2011 01:14 AM, Hans-Christoph Steiner wrote: 'undefined reference' generally means that the linker has found symbols in the .o files that it can't find a reference to. I.e. take the function 'foo', if myobject.o uses foo() from the bar lib, and the bar lib is not

[PD-dev] ANN: upcoming L2Ork performances and a new pd-l2ork software release

2011-04-04 Thread Ivica Ico Bukvic
(apologies for cross-posting) Dear Friends and fellow L2Ork and Pd enthusiasts, I would greatly appreciate it if you would please distribute the following announcement. The spring is in the air, which means it is time for the spring DISIS (http://disis.music.vt.edu) and L2Ork

Re: [PD-dev] flext and gnu/windows - 'undefined reference' with pd global vars?

2011-04-04 Thread dmotd
On 04/05/2011 03:52 AM, martin.pe...@sympatico.ca wrote: On 04/05/2011 01:14 AM, Hans-Christoph Steiner wrote: 'undefined reference' generally means that the linker has found symbols in the .o files that it can't find a reference to. I.e. take the function 'foo', if myobject.o uses foo()