From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20774 invoked from network); 2 Mar 2004 11:45:26 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 2 Mar 2004 11:45:26 -0000 Received: (qmail 4885 invoked by alias); 2 Mar 2004 11:45:19 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 19522 Received: (qmail 4874 invoked from network); 2 Mar 2004 11:45:18 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 2 Mar 2004 11:45:18 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [82.69.48.121] by sunsite.dk (MessageWall 1.0.8) with SMTP; 2 Mar 2004 11:45:18 -0000 Received: by umarumohammed.org (Postfix, from userid 1000) id 5D7DF15AEFB; Tue, 2 Mar 2004 11:46:21 +0000 (GMT) Date: Tue, 2 Mar 2004 11:46:21 +0000 From: Ibraheem Umaru-Mohammed To: Peter Stephenson Cc: Ibraheem Umaru-Mohammed , Zsh hackers list Subject: Re: 4.2.0-pre-1 Message-ID: <20040302114621.GA3581@rabox> References: <20040302103757.GA2667@rabox> <18780.1078226115@csr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18780.1078226115@csr.com> X-OS: Gentoo Base System version 1.4.3.13p1 - Linux 2.4.25_pre7-gss-r2 User-Agent: Mutt/1.5.6i On [02/03/04 11:15 +0000], Peter Stephenson wrote: > Ibraheem Umaru-Mohammed wrote: > > "sigcount.h", line 2.74: 1506-186 (W) String literal must be ended before the > > end of line. > > "signames.epro", line 5.74: 1506-186 (W) String literal must be ended before > > the end of line. > > /usr/vac/bin/cc -qlanglvl=ansi -c -I. -DHAVE_CONFIG_H -O -o jobs.o > > jobs.c > > "sigcount.h", line 2.74: 1506-186 (W) String literal must be ended before the > > end of line. > > "signames.epro", line 5.74: 1506-186 (W) String literal must be ended before > > the end of line. > > "jobs.c", line 686.43: 1506-276 (S) Syntax error: possible missing ')'? > > "jobs.c", line 697.46: 1506-068 (S) Operation between types "char*" and "int" > > is not allowed. > > "jobs.c", line 698.21: 1506-277 (S) Syntax error: possible missing ')' or ',' > > ? > > "jobs.c", line 698.27: 1506-275 (S) Unexpected text ')' encountered. > > "jobs.c", line 769.77: 1506-276 (S) Syntax error: possible missing ')'? > > "jobs.c", line 773.88: 1506-277 (S) Syntax error: possible missing ')' or ',' > > ? > > "jobs.c", line 775.77: 1506-277 (S) Syntax error: possible missing ')' or ',' > > ? > > It seems to be falling over on the sigmsg(...) macros. > > You should have a file in the Src directory where you are building > called sigcount.h containing something like > > #define SIGCOUNT 45 > #define sigmsg(sig) ((sig) <= SIGCOUNT ? sig_msg[sig] : "unknown signal") > > Is your version similar? If so, is there something weird in the file > signames.c in the same directory (feel free to send to the file)? > > Thanks for the info. > Hmmmn, sigcount.h seems to have unclosed quotes: ,---- [ sigcount.h ] | #define SIGCOUNT 59 | #define sigmsg(sig) ((sig) <= SIGCOUNT ? sig_msg[sig] : "unknown signal3) `---- Any utility version you want me to test for? awk? sed? A regular expression issue? Cheers, --ibraheem --