Re: [PD-dev] recursion in Gem - a tutorial

2007-07-19 Thread IOhannes m zmoelnig
Patrice Colet wrote: I tried to make DLLs of nrepeat and nnrepeat, but it seems I'm too ignoramus to find out how to proceed, I've entered those lines in the msys shell i haven't had a look at the tutorial files, but i was wondering why you couldn't build [nrepeat] (i haen't seen [nnrepeat]

Re: [PD-dev] recursion in Gem - a tutorial

2007-07-19 Thread Patrice Colet
Well, thanks, it's not even ignorance it's blindness, the solution is so simple that I didn't figure it out, you save me hours of tries with several compilers. PS: nmake15 used with mingw gcc just gave me dll that doesn't load too, so the problem rather come from mingw/gcc or ld. IOhannes m

Re: [PD-dev] [PD] recursion in Gem - a tutorial

2007-07-19 Thread patrice colet
Yes, I've allready figured it out with testing your external on linux, the dll is merely impossible to make with win32-mingw (so if someone has succesfully made the dll, please share!) and with reading your last mail to IOannes. Le jeudi 19 juillet 2007 à 08:12 +, Claude Heiland-Allen a

Re: [PD-dev] pd_error() deprecated

2007-07-19 Thread Hans-Christoph Steiner
How about make pd_error() call error() and issue a warning. Otherwise the API becomes incompatible. .hc On Jul 19, 2007, at 12:50 AM, Mathieu Bouchard wrote: in DesireData, pd_error() is now deprecated. it should be replaced by a plain error(). This is because error() can now gather

Re: [PD-dev] pd_error() deprecated

2007-07-19 Thread Mathieu Bouchard
On Thu, 19 Jul 2007, Hans-Christoph Steiner wrote: How about make pd_error() call error() Sorry, I am not clear. By deprecated I mean still supported. All the pd_error()s I removed were calls, not the implementation. and issue a warning. If I make it issue a warning I'll get pagefuls of

Re: [PD-dev] pd_error() deprecated

2007-07-19 Thread Hans-Christoph Steiner
On Jul 19, 2007, at 6:21 PM, Mathieu Bouchard wrote: On Thu, 19 Jul 2007, Hans-Christoph Steiner wrote: How about make pd_error() call error() Sorry, I am not clear. By deprecated I mean still supported. All the pd_error()s I removed were calls, not the implementation. and issue a

Re: [PD-dev] pd_error() deprecated

2007-07-19 Thread Claude Heiland-Allen
Hans-Christoph Steiner wrote: How about a compiler warning, isn't it something like #warning? No, that emits a warning when the #warning line is reached by the preprocessor. In GNU C you can emit warnings when deprecated functions are *used* like this: int old_fn () __attribute__

Re: [PD-dev] pd_error() deprecated

2007-07-19 Thread Mathieu Bouchard
On Fri, 20 Jul 2007, Claude Heiland-Allen wrote: Hans-Christoph Steiner wrote: How about a compiler warning, isn't it something like #warning? No, that emits a warning when the #warning line is reached by the preprocessor. In GNU C you can emit warnings when deprecated functions are *used*