discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] Connect one source to multiple sinks?


From: Berndt Josef Wulf
Subject: Re: [Discuss-gnuradio] Connect one source to multiple sinks?
Date: Tue, 2 Nov 2004 21:52:46 +1030
User-agent: KMail/1.7

G'day,

I've synchronized the local source tree with the CVS repositry as of today and 
now experience problems when building gnu-core, see below:

gr_local_sighandler.cc: In member function `std::string gr_signal::name() 
const
   ':
gr_local_sighandler.cc:83: error: `SIGSTKFLT' undeclared (first use this
   function)
gr_local_sighandler.cc:83: error: (Each undeclared identifier is reported only
   once for each function it appears in.)

This appears to be new since it wasn't encountered on previous builds. 
SIGSTKFLT, "signal stack fault", is a signal not supported on NetBSD 
platforms.

Find patch below for current work-around:

--- gr_local_sighandler.cc.orig 2004-11-02 21:50:02.000000000 +1030
+++ gr_local_sighandler.cc      2004-11-02 21:30:34.000000000 +1030
@@ -80,7 +80,9 @@
     SIGNAME (SIGPIPE);
     SIGNAME (SIGALRM);
     SIGNAME (SIGTERM);
+#ifndef __NetBSD__
     SIGNAME (SIGSTKFLT);
+#endif
     SIGNAME (SIGCHLD);
     SIGNAME (SIGCONT);
     SIGNAME (SIGSTOP);

73, Berndt
VK5ABN

Attachment: pgpY1OtLNwhbv.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]