From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gatech.edu (gatech.edu [130.207.244.244]) by werple.net.au (8.7/8.7) with SMTP id HAA09953 for ; Wed, 11 Oct 1995 07:19:47 +1000 (EST) Received: from math.gatech.edu (gauss.skiles.gatech.edu) by gatech.edu with SMTP id AA28329 (5.65c/Gatech-10.0-IDA for ); Tue, 10 Oct 1995 17:18:23 -0400 Received: by math.gatech.edu (5.x/SMI-SVR4) id AA01872; Tue, 10 Oct 1995 17:14:48 -0400 Resent-Date: Tue, 10 Oct 1995 07:33:19 +0100 (MET) Old-Return-Path: Date: Tue, 10 Oct 1995 07:33:19 +0100 (MET) From: Erwin van Eijk To: Jean-Christophe Boggio Cc: zsh-list@sterling.com Subject: Re: Strange signals.h In-Reply-To: <199510100057.BAA03412@gestalt.freenix.fr> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Resent-Message-Id: <"xizja3.0.AT.89kUm"@gauss> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/441 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu On Tue, 10 Oct 1995, Jean-Christophe Boggio wrote: > Following my previous problem, I looked at the file "signals.h" in the src > directory and found it strange. > /* signals.h */ > /* architecture-customized signals.h for zsh 2.5.03 > * for architecture "i486", > * automagically generated by buildzsh -- do not edit */ > /* if all this is wrong, blame csh ;-) */ > #define SIGCOUNT 1 Are you using a linux kernel somewhere in the 1.3.* then the cause of your trouble is that the definition of the signals was moved to /usr/include/asm/signals.h /usr/include/linux/signals.h only has an #include in it. The patch i used was: configure.in: 348-351 for SIGNAL_H in /usr/include/bsd/sys/signal.h dnl Next + /usr/include/asm/signal.h dnl Linux, new kernel /usr/include/linux/signal.h dnl Linux /usr/include/sys/signal.h dnl Almost everybody else /dev/null; dnl Just in case we fall through It fixed the problem for me after I ran configure again, that is.... \ \ /\ +----------------------+ I do not fear computers. ( ) | Erwin J. van Eijk | I fear the lack of them. _( * )_ | wabbit@corner.iaf.nl | +----------------------+ --Isaac Asimov