Re: [PD-dev] build error (hidio)

2008-05-08 Thread Hans-Christoph Steiner
Yup, sorry, that's me, working on it now. You can disable which externals are build as part of the whole package in externals/ Makefile, check out the LIB_TARGETS. .hc On May 7, 2008, at 6:01 AM, Tim wrote: Tried to compile pd-extended-0.40.3, got some error in hidio. Looks perhaps

Re: [PD-dev] build error (hidio)

2008-05-07 Thread Tim
Looking at the logs, the linux autobuild servers are having the same problem. On Wed, May 7, 2008 at 12:01 AM, Tim [EMAIL PROTECTED] wrote: Tried to compile pd-extended-0.40.3, got some error in hidio. Looks perhaps like hidio's problem. Any thoughts? As a quick fix, is there some easy way to

[PD-dev] build error (hidio)

2008-05-06 Thread Tim
Tried to compile pd-extended-0.40.3, got some error in hidio. Looks perhaps like hidio's problem. Any thoughts? As a quick fix, is there some easy way to disable building of certain externals? cc -DPD -O2 -mcpu=i686 -march=i386 -I/home/me/pd-extended/pd/src -Wall -W -ggdb -DUNIX -Dunix -fPIC -o

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

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.

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

Re: [PD-dev] build error

2008-04-10 Thread David Plans Casal
On 10 Apr 2008, at 01:35, bsoisoi wrote: are you on 10.5? Welcome to the mac os x pd-extended nightmare Hear hear. 10.5 build is becoming the first reason in ten years I've looked for another dev platform than pd. Mind, I think maybe a switch back to old Linux is a better option. David

Re: [PD-dev] build error

2008-04-10 Thread Brandon Zeeb
We're almost there, though! Once toxy is ready to go, if I remember correctly, this only leaves the hid externals (which are blocked by a fink bug) and maybe 1-2 other small externals. The only way around that ptex-nox-base bug is to rebuild fink including the pd dependencies in another

Re: [PD-dev] build error

2008-04-10 Thread marius schebella
is the problem the makefile or the sourcecode? are some problems related to cross platform compatibility? with an error like the one below, I have no idea where I should start searching. I know that hans had it working on one machine, but you are right, this is annoying. I also only got gem

Re: [PD-dev] build error

2008-04-10 Thread Hans-Christoph Steiner
10.4 builds work on 10.5 fine, as far as I know. Are you having problems building or using binaries? Yes, Fink is not perfect, but imagine trying to build all that stuff by hand... and then write up instructions for someone else to do it... shudder... - My FTGL update has be included in

Re: [PD-dev] build error

2008-04-10 Thread marius schebella
I think the toxy error results from some sed problem, in particular the -e option of sed. sed seems to write a strange line into setup.wiq if I open it, the first line starts like -e // Do not edit this file (edit ../test/toxy/setup.wid, and run make).\n//\nputs stderr [concat loading built-in

[PD-dev] build error

2008-04-09 Thread marius schebella
hi, trying to build an intel build of pd-extended and get an error for toxy, don't know what is wrong. thanks, marius. gcc -Wall -W -Wstrict-prototypes -Wno-unused -Wno-parentheses -Wno-switch -march=pentium4 -msse2 -mfpmath=sse -ftree-vectorize -ftree-vectorizer-verbose=2 -DUNIX -DMACOSX -I .

Re: [PD-dev] build error

2008-04-09 Thread Hans-Christoph Steiner
Arg, this bug again. There is some crazy scripting in this makefile, it is quite problematic: http://pure-data.svn.sourceforge.net/viewvc/pure-data/trunk/externals/ miXed/toxy/Makefile .hc On Apr 9, 2008, at 6:22 PM, marius schebella wrote: hi, trying to build an intel build of

Re: [PD-dev] build error

2008-04-09 Thread marius schebella
tried fink install coreutils-default and... ... then I tried fink install sed and... ... then it did not work still. marius. Hans-Christoph Steiner wrote: Arg, this bug again. There is some crazy scripting in this makefile, it is quite problematic:

Re: [PD-dev] build error

2008-04-09 Thread bsoisoi
are you on 10.5? Welcome to the mac os x pd-extended nightmare !B On Apr 9, 2008, at 7:52 PM, marius schebella wrote: tried fink install coreutils-default and... ... then I tried fink install sed and... ... then it did not work still. marius. Hans-Christoph Steiner wrote: Arg, this

Re: [PD-dev] build error

2008-04-09 Thread Hans-Christoph Steiner
Layers upon layers of hacks. Amazingly it works... sometimes. ;) Where there is a will, there is a way. .hc On Apr 9, 2008, at 8:35 PM, bsoisoi wrote: are you on 10.5? Welcome to the mac os x pd-extended nightmare !B On Apr 9, 2008, at 7:52 PM, marius schebella wrote: tried fink