[PD-dev] [ pure-data-Bugs-1940530 ] [shell] crashing under pd-ext osx 10.5 macintel

2008-04-11 Thread SourceForge.net
Bugs item #1940530, was opened at 2008-04-11 16:22 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1940530&group_id=55736 Please note that this message will contain a full copy o

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. > > T

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/Re

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 unco

[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 been

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

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 co

Re: [PD-dev] build error

2008-04-11 Thread Hans-Christoph Steiner
On Apr 11, 2008, at 2:15 PM, Steffen Juul wrote: > > 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

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 b

[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=detail&atid=478070&aid=1912772&group_id=55736 Please note that this message will contain a full copy of the comment t

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

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 i

Re: [PD-dev] new approach to Fink

2008-04-11 Thread Hans-Christoph Steiner
cd pd-extended/externals make zexy_install Then everything will be installed into pd-extended/externals/build. .hc On Apr 10, 2008, at 8:45 PM, marius schebella wrote: > how can I try to compile only the one external? or how can I skip > it in autobuild? > marius. > > Hans-Christoph Steiner w