Re: [PD] GGEE [lowpass] error vs. purepd [lowpass]? was Re: basic resonant filters in Pd

2009-05-19 Thread IOhannes m zmoelnig

brandon zeeb wrote:

Btw, this seems to be a feature of almost all of the GGEE biquad coefficient
externals.  Check line 67 on highpass.c, bandpass.c, equalizer.c, and so
forth.  I'm not sure how you would want to handle this, but keep in mind
it's systemic.



you would systematically use x-x_rate=sys_getsr().

fgamsdr
IOhannes


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] GGEE [lowpass] error vs. purepd [lowpass]? was Re: basic resonant filters in Pd

2009-05-19 Thread Claude Heiland-Allen

IOhannes m zmoelnig wrote:

brandon zeeb wrote:
Btw, this seems to be a feature of almost all of the GGEE biquad 
coefficient

externals.  Check line 67 on highpass.c, bandpass.c, equalizer.c, and so
forth.  I'm not sure how you would want to handle this, but keep in mind
it's systemic.



you would systematically use x-x_rate=sys_getsr().


Some additional questions:

What about [block~] up/downsampling? does that get taken into account by 
sys_getsr()? when is it safe/recommended to call sys_getsr()? (I guess 
in the dsp add method?)



Claude


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] GGEE [lowpass] error vs. purepd [lowpass]? was Re: basic resonant filters in Pd

2009-05-19 Thread IOhannes m zmoelnig

Claude Heiland-Allen wrote:

IOhannes m zmoelnig wrote:

brandon zeeb wrote:
Btw, this seems to be a feature of almost all of the GGEE biquad 
coefficient

externals.  Check line 67 on highpass.c, bandpass.c, equalizer.c, and so
forth.  I'm not sure how you would want to handle this, but keep in mind
it's systemic.



you would systematically use x-x_rate=sys_getsr().


Some additional questions:

What about [block~] up/downsampling? does that get taken into account by 
sys_getsr()? when is it safe/recommended to call sys_getsr()? (I guess 
in the dsp add method?)




ok.

sys_getsr() reports the sample-rate of the audio-backend.
whatever happens within the patch (up/downsampling) does not affect this 
value.
if you want to get the sample-blocks samplerate, you get this from the 
t_signal structure (as passed to the dsp callback)


unfortunately, the sr in this structure always munges in the overlap 
factor...



vfsamsdr
IOhannes


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] who wants to port [wacom] for windows?

2009-05-19 Thread João Pais

Hello again, Pd developers and programmers,

[added comment]

I am resending this message, as the latest version wasn't a success. I  
guess no one needs a unix version of [wacom], so I rephrase the question:  
who wants to port [wacom] for windows only?
H-C, I noticed that you're putting in a group to work on windows-related  
stuff. Do you mind spreading this message around to any windows-related  
developers? (developers! developers! developers! developers! developers!  
developers! developers! developers! developers! developers! developers!  
developers! developers! developers! ...)


And after this interlude comes the original message again:


[original message]

We - me and Johannes Kreidler for now - wanted to ask if anyone would be
interested in programming a version of Thomas Grill's [wacom] for windows.  
This external is used to take data from wacom tablets - so in case anyone  
else is interested in this please say something.


The features/work would include:

- be compatible with general wacom architecture - and specially with the
Intuos3 (which is the tablet we own)
- take all parameters from the tablet connected
   - not forgetting tilt+inclination, touch strips and keys (these aren't  
covered by [wintablet])
- put the compiled binaries in a svn folder packaged with Pd Extended (see  
below)

- be willing to do some maintenance now and then, specially until things
get stable (after that, I guess the work would be kind of finished)

According to T Grill, the developer(s) that work on this must register
with Wacom as developer(s), so that they have access to the wacon API.
Also, the source code cannot be given away, so they must sign a
non-disclosure contract (from what Thomas said, not as complicated as it
sounds). I couldn't find exact information about this, but at
http://www.wacomeng.com/devsupport/index.html might be something more
clear.

It would be perfect if someone would be interested in porting the code
just because. In case that doesn't happen, we - me, Johannes Kreidler and
whoever wants to join in - would be interested in giving a small payment
for the work. We're poor people (just like you), so we can't really pay
what a professional programmer should get for the work. In that case, just
get in discussion with us, and we'll see what can be done.

Again, if this interests someone else - either as developper or
contributor - please forward this mail away.

Best,

João Pais

--
Friedenstr. 58
10249 Berlin (Deutschland)
Tel +49 30 42020091 | Mob +49 162 6843570
jmmmp...@googlemail.com | skype: jmmmpjmmmp

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] looking for a circular buffer for dsp blocks or similar.

2009-05-19 Thread Martin Schied

Hi!

is there already something like a 'circular buffer' external or 
abstraction for dsp blocks?


I want to detect onsets / attacks of 512 sample long signals using 
[fiddle~ 1024] and write them in arrays of 1024 samples.


for now my patch looks like this:

the signal is going to [fiddle~ 1024] and to a [delay~] with 576 samples 
(512 + 64) which is going to tabwrite~.
after fiddle~ detects an attack it starts a recording of tabwrite. (see 
also attached patch)


Altogether this process needs 33ms (1024 + 512 + 64 samples) after an 
attack has happened to record a signal of 22ms. (1024 samples)


My idea was, to use a kind of delayline which is big enough to contain 
the whole signal and then copy the entire content of this delayline in 
one moment, so in effect no time has been wasted for delaying the 
signal. It could save 11ms in this example.


I'm also open for other suggestions. I already thought of 
pre-recording blocks with multiple delay~ + tabsend~ and copying them 
together after a bang from fiddle~, but felt not well by thinking this...

also some concerns for this:
-using big blocks (1024) there's an additional uncertainity to match 
analysis windows of fiddle~ so their offset to fiddle~ must be known.
-using small blocks (64) this becomes unhandy for long delays when not 
using dynamic patching (at least with my knowledge of pd)


btw. can somebody explain where those additional 64 frames (1 Block) 
delay are coming from? Is fiddle's (and also bonk's) output delayed by 
one audio block? attached is an example showing this. (and also the 
above mentioned)


cheers,
Martin





fiddletest.pd
Description: application/puredata
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] PD + JACK = more than 2 blocks of latency?

2009-05-19 Thread Matthias Geier
Dear list.

I found several threads regarding latency, but none of them answered
my question:

I did this: Play audio data from a JACK client (in my case Audacity),
loop it through a pd-patch (which is just a short-circuit), and then
record it again (also with Audacity).

In all cases that I tried, the recorded signal had a delay of 2 JACK
blocks (periods) plus 64 samples.
I tried the -blocksize and -audiobuf options, but they didn't seem to
change anything.
I read about the -frags and -fragsize options, but they didn't seem to
exist in my pd version (I tried both pd-extended 0.40.3 and pd vanilla
0.41.4 from Debian Squeeze).

When I do the same thing with other JACK clients, I get the expected
and desired 1 block of delay.

I know, that less than one block of delay is impossible, but is it
possible to reduce pd's latency to one JACK block?

cheers,
Matthias

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] libmp3lame0 vs. liblame0

2009-05-19 Thread Martin Schied

Hans-Christoph Steiner wrote:


Thanks for spotting that, I fixed it.

sorry, if that's already done elsewhere, but both, rc2 (now official) 
and also (inofficial) rc3 still have a dependency to liblame0


here's what I get in my shell (sorry, german shell)

/tmp $ sudo dpkg -i Pd-0.41.4-extended-rc2-ubuntu-hardy-i386.deb

...
pd-extended hängt ab von liblame0 (= 3.97); aber:
Paket liblame0 ist nicht installiert.
...

/tmp $ sudo apt-get install liblame0
...
Paket liblame0 ist nicht verfügbar, wird aber von einem anderen
Paket referenziert. Das kann heißen, dass das Paket fehlt, dass es veraltet
ist oder nur aus einer anderen Quelle verfügbar ist.
Doch die folgenden Pakete ersetzen es:
libmp3lame0


/tmp $ sudo apt-get install libmp3lame0
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut
Lese Status-Informationen ein... Fertig
libmp3lame0 ist schon die neueste Version.



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PD + JACK = more than 2 blocks of latency?

2009-05-19 Thread IOhannes m zmoelnig

Matthias Geier wrote:


I know, that less than one block of delay is impossible, but is it
possible to reduce pd's latency to one JACK block?


with the current implementation of Pd's jack backend: no

fgmasdr
IOhannes


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] MinGW/Windows in #dataflow starting now!

2009-05-19 Thread Hans-Christoph Steiner

Come and join us for the Windows fun!  We are in #dataflow:

irc://irc.freenode.net/dataflow

.hc

-- 
  Hans-Christoph Steiner
  h...@at.or.at

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] compiling netsend~ in osx 10.5

2009-05-19 Thread Andres Ferrari

hello Hans,

the objects was compiled in OSX 10.5.5 with terminal (xcode installed in the 
system)

Do you have the objects compiled for leopard?




 Message: 7
 Date: Mon, 18 May 2009 15:31:10 -0700 (PDT)
 From: Andres Ferrari an...@yahoo.com
 Subject: [PD] compiling netsend~ in osx 10.5
 To: pd-list@iem.at
 Message-ID: 324298.20353...@web111404.mail.gq1.yahoo.com
 Content-Type: text/plain; charset=iso-8859-1
 
 
 hello,
 
 I got netsend~ and netreceive~ sources from this website:
 http://www.nullmedium.de/dev/netsend~/
 
 
 when I compile them netreceive~..pd_darwin is created
 without problem, but netsend~.pd_darwin don`t appear and the
 terminal show:
 
 ferraris-macbook41:net ferrari$ make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow -Wno-unused
 -Wno-parentheses -Wno-switch -I../../src -Iinclude -o
 netsend~.o -c netsend~.c
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
 such instruction: `fctiw %st,%st'
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
 such instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1
 
 
 any idea??
 
 thanks!!!
 
 
 Andr?s Ferrari G.
 
 http://www.myspace.com/anfex
 
 
 
 
 
      
 
 ?Obt?n la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8. 
 http://downloads.yahoo.com/ieak8/?l=e1
 
 
 
 
 --
 
 Message: 8
 Date: Mon, 18 May 2009 20:01:02 -0400
 From: Hans-Christoph Steiner h...@at.or.at
 Subject: Re: [PD] compiling netsend~ in osx 10.5
 To: Andres Ferrari an...@yahoo.com,
 pd-list@iem.at
 Message-ID: 1242691262.32154.1316109...@webmail.messagingengine.com
 Content-Type: text/plain; charset=ISO-8859-1
 
 
 Wow, that's a crazy error.  Never seen anything like
 that.  Perhaps your
 compiler setup is messed up?  It built for me in
 10.4/PowerPC.
 
 .hc
 
 -- 
   Hans-Christoph Steiner
   h...@at.or.at
 
 
 On Mon, 18 May 2009 15:31 -0700, Andres Ferrari an...@yahoo.com
 wrote:
  
  hello,
  
  I got netsend~ and netreceive~ sources from this
 website:
  http://www.nullmedium.de/dev/netsend~/
  
  
  when I compile them netreceive~..pd_darwin is created
 without problem,
  but netsend~.pd_darwin don`t appear and the terminal
 show:
  
  ferraris-macbook41:net ferrari$ make pd_darwin
  cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow
 -Wno-unused
  -Wno-parentheses -Wno-switch -I../../src -Iinclude -o
 netsend~.o -c
  netsend~.c
 
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
 such
  instruction: `fctiw %st,%st'
 
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
 such
  instruction: `stfd %st, -32(%ebp)'
  make: *** [netsend~.pd_darwin] Error 1
  
  
  any idea??
  
  thanks!!!
  
  
  Andr?s Ferrari G.
  
  http://www.myspace.com/anfex
  
  
  
  
  
    
    
  ?Obt?n la mejor experiencia en la web!
  Descarga gratis el nuevo Internet Explorer 8. 
  http://downloads.yahoo.com/ieak8/?l=e1
  
  
  ___
  Pd-list@iem.at
 mailing list
  UNSUBSCRIBE and account-management -
  http://lists.puredata.info/listinfo/pd-list
 
 
 
 --
 
 ___
 Pd-list mailing list
 Pd-list@iem.at
 to manage your subscription (including un-subscription)
 see
 http://lists.puredata.info/listinfo/pd-list
 
 
 End of Pd-list Digest, Vol 50, Issue 66
 ***
 


  

¡Obtén la mejor experiencia en la web!
Descarga gratis el nuevo Internet Explorer 8. 
http://downloads.yahoo.com/ieak8/?l=e1

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [PD-dev] who wants to port [wacom] for windows?

2009-05-19 Thread Thomas Grill

Hi all,
i'd like to add that i would pass my existing source code on the  
anyone stepping in (permission from Wacom provided).
In my view (and as far as i remember) what's missing for it to work  
under Windows is just some window handling code.

gr~~~

Am 19.05.2009 um 13:25 schrieb João Pais:


Hello again, Pd developers and programmers,

[added comment]

I am resending this message, as the latest version wasn't a success.  
I guess no one needs a unix version of [wacom], so I rephrase the  
question: who wants to port [wacom] for windows only?
H-C, I noticed that you're putting in a group to work on windows- 
related stuff. Do you mind spreading this message around to any  
windows-related developers? (developers! developers! developers!  
developers! developers! developers! developers! developers!  
developers! developers! developers! developers! developers!  
developers! ...)


And after this interlude comes the original message again:


[original message]

We - me and Johannes Kreidler for now - wanted to ask if anyone  
would be
interested in programming a version of Thomas Grill's [wacom] for  
windows. This external is used to take data from wacom tablets - so  
in case anyone else is interested in this please say something.


The features/work would include:

- be compatible with general wacom architecture - and specially with  
the

Intuos3 (which is the tablet we own)
- take all parameters from the tablet connected
  - not forgetting tilt+inclination, touch strips and keys (these  
aren't covered by [wintablet])
- put the compiled binaries in a svn folder packaged with Pd  
Extended (see below)
- be willing to do some maintenance now and then, specially until  
things

get stable (after that, I guess the work would be kind of finished)

According to T Grill, the developer(s) that work on this must register
with Wacom as developer(s), so that they have access to the wacon API.
Also, the source code cannot be given away, so they must sign a
non-disclosure contract (from what Thomas said, not as complicated  
as it

sounds). I couldn't find exact information about this, but at
http://www.wacomeng.com/devsupport/index.html might be something more
clear.

It would be perfect if someone would be interested in porting the code
just because. In case that doesn't happen, we - me, Johannes  
Kreidler and
whoever wants to join in - would be interested in giving a small  
payment
for the work. We're poor people (just like you), so we can't really  
pay
what a professional programmer should get for the work. In that  
case, just

get in discussion with us, and we'll see what can be done.

Again, if this interests someone else - either as developper or
contributor - please forward this mail away.

Best,

João Pais

--
Friedenstr. 58
10249 Berlin (Deutschland)
Tel +49 30 42020091 | Mob +49 162 6843570
jmmmp...@googlemail.com | skype: jmmmpjmmmp

___
Pd-dev mailing list
pd-...@iem.at
http://lists.puredata.info/listinfo/pd-dev



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] [OT]Mailing-List-Info Extraction-Software

2009-05-19 Thread Luigi

Hi List,

a question that is not PD-related:

Since a few weeks i am thinking if there is some kind of software,  
that extracts messages from lists, be it

mailing lists, yahoo, or google groups.

I am following th pd-list for quite some time and the information here  
is extremely valuable.


The problem is the filtering, of course you can browse the archives,  
but i was wondering if anybody knows of a better way.


A software-based solution that helps one to restructure information  
that is hidden in these kinds of lists.


Of course it would need some human effort to sort by subject, topic or  
move to categories


Any Ideas/Suggestions ?

All the best
Luigi


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] who wants to port [wacom] for windows?

2009-05-19 Thread patrick

Hi,

I've been using a Wacom Graphire 2 with HID for a long time. But since 
i've upgraded to Ubuntu Jaunty that use HAL .fdi, it's not working 
anymore. I can see the device using [print] - [hid] but i cannot poll it 
(no output). wacdump is not working either. Anyone found a solution for 
this? It's not a permission problem since i am root.


[wacom] where can i try it? can i compile it for linux?

Here's the story:
http://ubuntuforums.org/showthread.php?t=1038949page=29

patrick



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] who wants to port [wacom] for windows?

2009-05-19 Thread João Pais

[wacom] where can i try it? can i compile it for linux?


talk to t grill. it's not open code, so you have to register with wacom to  
see their api.


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] MinGW/Windows in #dataflow starting now!

2009-05-19 Thread Hans-Christoph Steiner


So we got quite a few more libs and things added to the build script  
and sources svn, this should all now be very easy to build on any  
Windows box following these instructions (http://puredata.info/docs/developer/mingw 
).  Please try it on yours and report back!


gettext 0.17.3
flite 1.3
libtool 2.2.6a
lame 3.98.2 (update)
expat 2.0.1
xvidcore
a52dec
libtheora
faac
faad2
x264

We also got some things built on MinGW, but not yet included in the  
script/sources SVN:

libgavl
gmerlin-avdecoder
ffmpeg

Once this is done, this means that we can use one API gavl/gmerlin for  
opening and saving audio/video on all platforms.  And it does a great  
job of opening a huge range of formats.


.hc

On May 19, 2009, at 1:12 PM, Hans-Christoph Steiner wrote:



Come and join us for the Windows fun!  We are in #dataflow:

irc://irc.freenode.net/dataflow

.hc

--
 Hans-Christoph Steiner
 h...@at.or.at






The arc of history bends towards justice. - Dr. Martin Luther  
King, Jr.




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] compiling netsend~ in osx 10.5

2009-05-19 Thread Hans-Christoph Steiner


It seems to be an Mac OS X/Intel 10.5 issue, I get the same:

h...@palatschinken:netsend~  make pd_darwin
cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wno-unused -Wno-parentheses -Wno- 
switch -I../../../pd/src -o netsend~.o -c netsend~.c
/var/folders/Yj/YjGPy6WhGTC8aZMfjwpxvTI/-Tmp-//ccp9MAda.s:614:no  
such instruction: `fctiw %st,%st'
/var/folders/Yj/YjGPy6WhGTC8aZMfjwpxvTI/-Tmp-//ccp9MAda.s:615:no  
such instruction: `stfd %st, -32(%ebp)'

make: *** [netsend~.pd_darwin] Error 1

Perhaps its worth reporting to Apple, that's probably a bug in their  
compiler.


.hc

On May 19, 2009, at 2:36 PM, Andres Ferrari wrote:



hello Hans,

the objects was compiled in OSX 10.5.5 with terminal (xcode  
installed in the system)


Do you have the objects compiled for leopard?





Message: 7
Date: Mon, 18 May 2009 15:31:10 -0700 (PDT)
From: Andres Ferrari an...@yahoo.com
Subject: [PD] compiling netsend~ in osx 10.5
To: pd-list@iem.at
Message-ID: 324298.20353...@web111404.mail.gq1.yahoo.com
Content-Type: text/plain; charset=iso-8859-1


hello,

I got netsend~ and netreceive~ sources from this website:
http://www.nullmedium.de/dev/netsend~/


when I compile them netreceive~..pd_darwin is created
without problem, but netsend~.pd_darwin don`t appear and the
terminal show:

ferraris-macbook41:net ferrari$ make pd_darwin
cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow -Wno-unused
-Wno-parentheses -Wno-switch -I../../src -Iinclude -o
netsend~.o -c netsend~.c
/var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
such instruction: `fctiw %st,%st'
/var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
such instruction: `stfd %st, -32(%ebp)'
make: *** [netsend~.pd_darwin] Error 1


any idea??

thanks!!!


Andr?s Ferrari G.

http://www.myspace.com/anfex







?Obt?n la mejor experiencia en la web!
Descarga gratis el nuevo Internet Explorer 8.
http://downloads.yahoo.com/ieak8/?l=e1




--

Message: 8
Date: Mon, 18 May 2009 20:01:02 -0400
From: Hans-Christoph Steiner h...@at.or.at
Subject: Re: [PD] compiling netsend~ in osx 10.5
To: Andres Ferrari an...@yahoo.com,
pd-list@iem.at
Message-ID: 1242691262.32154.1316109...@webmail.messagingengine.com
Content-Type: text/plain; charset=ISO-8859-1


Wow, that's a crazy error.  Never seen anything like
that.  Perhaps your
compiler setup is messed up?  It built for me in
10.4/PowerPC.

.hc

--
  Hans-Christoph Steiner
  h...@at.or.at


On Mon, 18 May 2009 15:31 -0700, Andres Ferrari an...@yahoo.com
wrote:


hello,

I got netsend~ and netreceive~ sources from this

website:

http://www.nullmedium.de/dev/netsend~/


when I compile them netreceive~..pd_darwin is created

without problem,

but netsend~.pd_darwin don`t appear and the terminal

show:


ferraris-macbook41:net ferrari$ make pd_darwin
cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow

-Wno-unused

-Wno-parentheses -Wno-switch -I../../src -Iinclude -o

netsend~.o -c

netsend~.c


/var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
such

instruction: `fctiw %st,%st'


/var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
such

instruction: `stfd %st, -32(%ebp)'
make: *** [netsend~.pd_darwin] Error 1


any idea??

thanks!!!


Andr?s Ferrari G.

http://www.myspace.com/anfex









?Obt?n la mejor experiencia en la web!
Descarga gratis el nuevo Internet Explorer 8.
http://downloads.yahoo.com/ieak8/?l=e1


___
Pd-list@iem.at

mailing list

UNSUBSCRIBE and account-management -
http://lists.puredata.info/listinfo/pd-list




--

___
Pd-list mailing list
Pd-list@iem.at
to manage your subscription (including un-subscription)
see
http://lists.puredata.info/listinfo/pd-list


End of Pd-list Digest, Vol 50, Issue 66
***




  


¡Obtén la mejor experiencia en la web!
Descarga gratis el nuevo Internet Explorer 8.
http://downloads.yahoo.com/ieak8/?l=e1

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list







You can't steal a gift. Bird gave the world his music, and if you can  
hear it, you can have it. - Dizzy Gillespie





___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] compiling netsend~ in osx 10.5

2009-05-19 Thread Jose Luis Santorcuato
Leopard... is like a windows vista... hehehe... i have problems with
blender... live ableton... the graphics... i am trying conect net send  and
net receive... this week i think the patch be ok.

Cheers from Chile

José

http://www.chilemigra.cl
http://arselectronicachile.blogspot.com/
www.myspace.com/santorcuato




2009/5/19 Hans-Christoph Steiner h...@at.or.at


 It seems to be an Mac OS X/Intel 10.5 issue, I get the same:

 h...@palatschinken:netsend~  make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wno-unused -Wno-parentheses
 -Wno-switch -I../../../pd/src -o netsend~.o -c netsend~.c
 /var/folders/Yj/YjGPy6WhGTC8aZMfjwpxvTI/-Tmp-//ccp9MAda.s:614:no such
 instruction: `fctiw %st,%st'
 /var/folders/Yj/YjGPy6WhGTC8aZMfjwpxvTI/-Tmp-//ccp9MAda.s:615:no such
 instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1

 Perhaps its worth reporting to Apple, that's probably a bug in their
 compiler.

 .hc


 On May 19, 2009, at 2:36 PM, Andres Ferrari wrote:


 hello Hans,

 the objects was compiled in OSX 10.5.5 with terminal (xcode installed in
 the system)

 Do you have the objects compiled for leopard?




  Message: 7
 Date: Mon, 18 May 2009 15:31:10 -0700 (PDT)
 From: Andres Ferrari an...@yahoo.com
 Subject: [PD] compiling netsend~ in osx 10.5
 To: pd-list@iem.at
 Message-ID: 324298.20353...@web111404.mail.gq1.yahoo.com
 Content-Type: text/plain; charset=iso-8859-1


 hello,

 I got netsend~ and netreceive~ sources from this website:
 http://www.nullmedium.de/dev/netsend~/http://www.nullmedium.de/dev/netsend%7E/


 when I compile them netreceive~..pd_darwin is created
 without problem, but netsend~.pd_darwin don`t appear and the
 terminal show:

 ferraris-macbook41:net ferrari$ make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow -Wno-unused
 -Wno-parentheses -Wno-switch -I../../src -Iinclude -o
 netsend~.o -c netsend~.c
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
 such instruction: `fctiw %st,%st'
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
 such instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1


 any idea??

 thanks!!!


 Andr?s Ferrari G.

 http://www.myspace.com/anfex







 
 ?Obt?n la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1




 --

 Message: 8
 Date: Mon, 18 May 2009 20:01:02 -0400
 From: Hans-Christoph Steiner h...@at.or.at
 Subject: Re: [PD] compiling netsend~ in osx 10.5
 To: Andres Ferrari an...@yahoo.com,
 pd-list@iem.at
 Message-ID: 1242691262.32154.1316109...@webmail.messagingengine.com
 Content-Type: text/plain; charset=ISO-8859-1


 Wow, that's a crazy error.  Never seen anything like
 that.  Perhaps your
 compiler setup is messed up?  It built for me in
 10.4/PowerPC.

 .hc

 --
  Hans-Christoph Steiner
  h...@at.or.at


 On Mon, 18 May 2009 15:31 -0700, Andres Ferrari an...@yahoo.com
 wrote:


 hello,

 I got netsend~ and netreceive~ sources from this

 website:

 http://www.nullmedium.de/dev/netsend~/http://www.nullmedium.de/dev/netsend%7E/


 when I compile them netreceive~..pd_darwin is created

 without problem,

 but netsend~.pd_darwin don`t appear and the terminal

 show:


 ferraris-macbook41:net ferrari$ make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow

 -Wno-unused

 -Wno-parentheses -Wno-switch -I../../src -Iinclude -o

 netsend~.o -c

 netsend~.c

  /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
 such

 instruction: `fctiw %st,%st'

  /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
 such

 instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1


 any idea??

 thanks!!!


 Andr?s Ferrari G.

 http://www.myspace.com/anfex







 

 ?Obt?n la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1


 ___
 Pd-list@iem.at

 mailing list

 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list




 --

 ___
 Pd-list mailing list
 Pd-list@iem.at
 to manage your subscription (including un-subscription)
 see
 http://lists.puredata.info/listinfo/pd-list


 End of Pd-list Digest, Vol 50, Issue 66
 ***




 
 ¡Obtén la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1

 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list






 

Re: [PD] compiling netsend~ in osx 10.5

2009-05-19 Thread Mario Mora
Andres

There is an update for leopard (10.5.6 -- 10.5.7) maybe that can fix the
thing...



2009/5/19 Jose Luis Santorcuato santorcuat...@gmail.com

 Leopard... is like a windows vista... hehehe... i have problems with
 blender... live ableton... the graphics... i am trying conect net send  and
 net receive... this week i think the patch be ok.

 Cheers from Chile

 José

 http://www.chilemigra.cl
 http://arselectronicachile.blogspot.com/
 www.myspace.com/santorcuato




 2009/5/19 Hans-Christoph Steiner h...@at.or.at


 It seems to be an Mac OS X/Intel 10.5 issue, I get the same:

 h...@palatschinken:netsend~  make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wno-unused -Wno-parentheses
 -Wno-switch -I../../../pd/src -o netsend~.o -c netsend~.c
 /var/folders/Yj/YjGPy6WhGTC8aZMfjwpxvTI/-Tmp-//ccp9MAda.s:614:no such
 instruction: `fctiw %st,%st'
 /var/folders/Yj/YjGPy6WhGTC8aZMfjwpxvTI/-Tmp-//ccp9MAda.s:615:no such
 instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1

 Perhaps its worth reporting to Apple, that's probably a bug in their
 compiler.

 .hc


 On May 19, 2009, at 2:36 PM, Andres Ferrari wrote:


 hello Hans,

 the objects was compiled in OSX 10.5.5 with terminal (xcode installed in
 the system)

 Do you have the objects compiled for leopard?




  Message: 7
 Date: Mon, 18 May 2009 15:31:10 -0700 (PDT)
 From: Andres Ferrari an...@yahoo.com
 Subject: [PD] compiling netsend~ in osx 10.5
 To: pd-list@iem.at
 Message-ID: 324298.20353...@web111404.mail.gq1.yahoo.com
 Content-Type: text/plain; charset=iso-8859-1


 hello,

 I got netsend~ and netreceive~ sources from this website:
 http://www.nullmedium.de/dev/netsend~/http://www.nullmedium.de/dev/netsend%7E/


 when I compile them netreceive~..pd_darwin is created
 without problem, but netsend~.pd_darwin don`t appear and the
 terminal show:

 ferraris-macbook41:net ferrari$ make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow -Wno-unused
 -Wno-parentheses -Wno-switch -I../../src -Iinclude -o
 netsend~.o -c netsend~.c
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
 such instruction: `fctiw %st,%st'
 /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
 such instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1


 any idea??

 thanks!!!


 Andr?s Ferrari G.

 http://www.myspace.com/anfex







 
 ?Obt?n la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1




 --

 Message: 8
 Date: Mon, 18 May 2009 20:01:02 -0400
 From: Hans-Christoph Steiner h...@at.or.at
 Subject: Re: [PD] compiling netsend~ in osx 10.5
 To: Andres Ferrari an...@yahoo.com,
 pd-list@iem.at
 Message-ID: 1242691262.32154.1316109...@webmail.messagingengine.com
 Content-Type: text/plain; charset=ISO-8859-1


 Wow, that's a crazy error.  Never seen anything like
 that.  Perhaps your
 compiler setup is messed up?  It built for me in
 10.4/PowerPC.

 .hc

 --
  Hans-Christoph Steiner
  h...@at.or.at


 On Mon, 18 May 2009 15:31 -0700, Andres Ferrari an...@yahoo.com
 wrote:


 hello,

 I got netsend~ and netreceive~ sources from this

 website:

 http://www.nullmedium.de/dev/netsend~/http://www.nullmedium.de/dev/netsend%7E/


 when I compile them netreceive~..pd_darwin is created

 without problem,

 but netsend~.pd_darwin don`t appear and the terminal

 show:


 ferraris-macbook41:net ferrari$ make pd_darwin
 cc -DPD -DUNIX -DMACOSX -O2 -Wall -W -Wshadow

 -Wno-unused

 -Wno-parentheses -Wno-switch -I../../src -Iinclude -o

 netsend~.o -c

 netsend~.c

  /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:614:no
 such

 instruction: `fctiw %st,%st'

  /var/folders/Pv/PvVeb-QFGxi7XEJGJnt4kk+++TI/-Tmp-//ccWJWAbj.s:615:no
 such

 instruction: `stfd %st, -32(%ebp)'
 make: *** [netsend~.pd_darwin] Error 1


 any idea??

 thanks!!!


 Andr?s Ferrari G.

 http://www.myspace.com/anfex







 

 ?Obt?n la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1


 ___
 Pd-list@iem.at

 mailing list

 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list




 --

 ___
 Pd-list mailing list
 Pd-list@iem.at
 to manage your subscription (including un-subscription)
 see
 http://lists.puredata.info/listinfo/pd-list


 End of Pd-list Digest, Vol 50, Issue 66
 ***




 
 ¡Obtén la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1