Re: [PD-dev] build error

2008-04-11 Thread Hans-Christoph Steiner
It's actually, the -e option to 'echo', which means interpret extended syntax, like \n. Not all 'echo's support it. Your 'echo' does not, it just echos the -e and \n unchanged. Basically, someone needs to rewrite that chunk to not rely on a specific version of 'echo'. I think it could

Re: [PD-dev] build error

2008-04-11 Thread marius schebella
I cannot confirm that: echo -e marius\\nhans prints out marius hans as expected. but maybe the problem is that ECHO = echo prints out = echo marius. Hans-Christoph Steiner wrote: It's actually, the -e option to 'echo', which means interpret extended syntax, like \n. Not all 'echo's

[PD-dev] [ pure-data-Bugs-1912772 ] zexy dlls don't load from Pd-0.40.3 windowsxp

2008-04-11 Thread SourceForge.net
Bugs item #1912772, was opened at 2008-03-12 16:05 Message generated for change (Comment added) made by zmoelnig You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=1912772group_id=55736 Please note that this message will contain a full copy of the comment

Re: [PD-dev] build error

2008-04-11 Thread Steffen Juul
On 10/04/2008, at 16.51, Hans-Christoph Steiner wrote: I generally try installing all of the dependencies from 'stable', then switch to 'unstable' for the rest. If an 'unstable' package adds more dependencies, then I switch back to 'stable' and try building them all there, then switch back

Re: [PD-dev] build error

2008-04-11 Thread Hans-Christoph Steiner
you are probably running your tests in your default 'bash' environment. The script runs in its own 'sh' environment, which is most likely somewhat different. Try the test in a test.sh script with #!/bin/sh at the top. .hc On Apr 11, 2008, at 11:12 AM, marius schebella wrote: I cannot

Re: [PD-dev] build error

2008-04-11 Thread marius schebella
that's what I did. it reads the capital ECHO as the echo command. maybe this is normal...? marius. Hans-Christoph Steiner wrote: you are probably running your tests in your default 'bash' environment. The script runs in its own 'sh' environment, which is most likely somewhat different.

[PD-dev] Resolved :: Pool disappearing or not getting created

2008-04-11 Thread B. Bogart
Hello all, Thomas in particular. This is really for the archives as the disapearing pool problem was resolved, and that is probably the same cause of pool not getting created in SVN flext. Let this be a lesson, when a flext external acts funny, recompile them all from the same flext!!! I've

Re: [PD-dev] build error

2008-04-11 Thread marius schebella
ok, the problem is that the following lines do not work on 10.5: # this is necessary to deal with cross-platform echo issues with '-e' ifeq ($(shell echo -e|sed 's|^-||'),e) ECHO = /bin/echo else ECHO = echo endif or maybe they work, but somehow this still calls /bin/echo, even if I

Re: [PD-dev] build error

2008-04-11 Thread marius schebella
looks god! created: /Users/marius/devel/pd-rsync/pd-extended/packages/darwin_app/Pd-0.40.3-extended-20080411.dmg rm -f build.dmg hdiutil unflatten Pd-0.40.3-extended-20080411.dmg hdiutil: unflatten: unflattening Pd-0.40.3-extended-20080411.dmg... /Developer/Tools/Rez /Developer/Headers

Re: [PD-dev] Resolved :: Pool disappearing or not getting created

2008-04-11 Thread Thomas Grill
Hi Ben, many thanks for your findings! I'm still not finished with the autoconf stuff, mainly because of problems on OSX 10.4, but let's hope the integration into pd-extended will make such issues vanish. gr~~~ Am 11.04.2008 um 20:21 schrieb B. Bogart: Hello all, Thomas in particular.