Date: Sun, 27 Feb 2000 09:57:30 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Prashant TR cc: djgpp-workers AT delorie DOT com Subject: Re: SIGCONT In-Reply-To: <200002250517.KAA00756@midpec.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Fri, 25 Feb 2000, Prashant TR wrote: > I happened to come across a routine that uses a SIGCONT signal (in > the Shutils 2.0f beta). DJGPP doesn't have this signal. During > compilation, it gives me an error. No signal except those required by ANSI should be used unconditionally. For other signals, a portable code should do this: #include . . . #ifdef SIGCONT ... code that uses SIGCONT ... #endif In other words, I think this is a bug in Sh-utils. Please report that to the maintainer.