Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* seq24 - midi sequencer released
       [not found] <E17TSLJ-0000Y3-00@usw-sf-list2.sourceforge.net>
@ 2002-07-13 21:16 ` rob buse
  2002-07-14 11:40   ` Frank Barknecht
  0 siblings, 1 reply; 4+ messages in thread
From: rob buse @ 2002-07-13 21:16 UTC (permalink / raw)
  To: alsa-devel


Hey Everyone !

I just GPL'd my seq24 midi sequencer.  
http://www.filter24.org/seq24/index.html

Uses ALSA 0.9.0 and GTKmm.

I hope someone else finds it useful :)	 
  .buse

----------------------------------------------------------
music + technology                     http://filter24.org


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: seq24 - midi sequencer released
  2002-07-13 21:16 ` seq24 - midi sequencer released rob buse
@ 2002-07-14 11:40   ` Frank Barknecht
  2002-07-14 15:50     ` Pedro Lopez-Cabanillas
  0 siblings, 1 reply; 4+ messages in thread
From: Frank Barknecht @ 2002-07-14 11:40 UTC (permalink / raw)
  To: alsa-devel

Hi,
rob buse hat gesagt: // rob buse wrote:

> I just GPL'd my seq24 midi sequencer.  
> http://www.filter24.org/seq24/index.html
> 
> Uses ALSA 0.9.0 and GTKmm.
> 
> I hope someone else finds it useful :)	

I'm having a problem compiling it, because I get this error:

sequence.C: In method `sequence::sequence()':
sequence.C:47: `PTHREAD_MUTEX_RECURSIVE' undeclared (first use this function)
sequence.C:47: (Each undeclared identifier is reported only once
sequence.C:47: for each function it appears in.)
sequence.C:47: implicit declaration of function `int pthread_mutexattr_settype(...)'
make[1]: *** [sequence.o] Error 1

I tried to add
#include <pthread.h>
to sequence.C, but that didn't help. Do you have any idea, where the
error might come from? 

ciao,
-- 
 Frank Barknecht                               _ ______footils.org__


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: seq24 - midi sequencer released
  2002-07-14 11:40   ` Frank Barknecht
@ 2002-07-14 15:50     ` Pedro Lopez-Cabanillas
  2002-07-14 18:29       ` seq24 - midi sequencer fixed rob buse
  0 siblings, 1 reply; 4+ messages in thread
From: Pedro Lopez-Cabanillas @ 2002-07-14 15:50 UTC (permalink / raw)
  To: Frank Barknecht; +Cc: rob buse, alsa-devel

El Dom 14 Jul 2002 13:40, Frank Barknecht escribió:
> rob buse hat gesagt: // rob buse wrote:
> > I just GPL'd my seq24 midi sequencer.
> > http://www.filter24.org/seq24/index.html
> >
> I'm having a problem compiling it, because I get this error:
>
> sequence.C: In method `sequence::sequence()':
> sequence.C:47: `PTHREAD_MUTEX_RECURSIVE' undeclared (first use this
> function) sequence.C:47: (Each undeclared identifier is reported only once
> sequence.C:47: for each function it appears in.)
> sequence.C:47: implicit declaration of function `int
> pthread_mutexattr_settype(...)' make[1]: *** [sequence.o] Error 1
>
> I tried to add
> #include <pthread.h>
> to sequence.C, but that didn't help. Do you have any idea, where the
> error might come from?

Same results for me. After some googling, I've found that adding the flag 
-D_GNU_SOURCE at src/Makefile.am and reconfiguring I could compile it. This 
is the line I have changed:

CXXFLAGS = @CXXFLAGS@ $(GTKMM_CFLAGS) -Wall -D_GNU_SOURCE

Pedro


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* re: seq24 - midi sequencer fixed
  2002-07-14 15:50     ` Pedro Lopez-Cabanillas
@ 2002-07-14 18:29       ` rob buse
  0 siblings, 0 replies; 4+ messages in thread
From: rob buse @ 2002-07-14 18:29 UTC (permalink / raw)
  To: Pedro Lopez-Cabanillas; +Cc: alsa-devel


Thanks everyone!  v0.1.1 should fix these problems. :)

cheers
.buse

On 2002.07.14 11:50 Pedro Lopez-Cabanillas wrote:
> El Dom 14 Jul 2002 13:40, Frank Barknecht escribió:
> > rob buse hat gesagt: // rob buse wrote:
> > > I just GPL'd my seq24 midi sequencer.
> > > http://www.filter24.org/seq24/index.html
> > >
> > I'm having a problem compiling it, because I get this error:
> >
> > sequence.C: In method `sequence::sequence()':
> > sequence.C:47: `PTHREAD_MUTEX_RECURSIVE' undeclared (first use this
> > function) sequence.C:47: (Each undeclared identifier is reported only
> once
> > sequence.C:47: for each function it appears in.)
> > sequence.C:47: implicit declaration of function `int
> > pthread_mutexattr_settype(...)' make[1]: *** [sequence.o] Error 1
> >
> > I tried to add
> > #include <pthread.h>
> > to sequence.C, but that didn't help. Do you have any idea, where the
> > error might come from?
> 
> Same results for me. After some googling, I've found that adding the flag
> 
> -D_GNU_SOURCE at src/Makefile.am and reconfiguring I could compile it.
> This
> is the line I have changed:
> 
> CXXFLAGS = @CXXFLAGS@ $(GTKMM_CFLAGS) -Wall -D_GNU_SOURCE
> 
> Pedro
> 
> 

----------------------------------------------------------
music + technology                     http://filter24.org


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-07-14 18:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <E17TSLJ-0000Y3-00@usw-sf-list2.sourceforge.net>
2002-07-13 21:16 ` seq24 - midi sequencer released rob buse
2002-07-14 11:40   ` Frank Barknecht
2002-07-14 15:50     ` Pedro Lopez-Cabanillas
2002-07-14 18:29       ` seq24 - midi sequencer fixed rob buse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox