From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18653 invoked from network); 1 Mar 2004 11:42:10 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 1 Mar 2004 11:42:10 -0000 Received: (qmail 21899 invoked by alias); 1 Mar 2004 11:41:51 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 19505 Received: (qmail 21833 invoked from network); 1 Mar 2004 11:41:50 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 1 Mar 2004 11:41:50 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [202.214.225.228] by sunsite.dk (MessageWall 1.0.8) with SMTP; 1 Mar 2004 11:41:49 -0000 Received: from exchangejp.csr.com (unverified) by mailsweeperjp.CSR.COM (Content Technologies SMTPRS 4.3.1) with ESMTP id ; Mon, 1 Mar 2004 19:54:57 +0900 Received: from EXCHANGE02.csr.com ([192.168.137.45]) by exchangejp.csr.com with Microsoft SMTPSVC(5.0.2195.6713); Mon, 1 Mar 2004 10:54:20 +0000 Received: from csr.com ([192.168.144.127]) by EXCHANGE02.csr.com with Microsoft SMTPSVC(5.0.2195.5329); Mon, 1 Mar 2004 10:54:16 +0000 To: Ibraheem Umaru-Mohammed , zsh-workers@sunsite.dk (Zsh hackers list) Subject: Re: 4.2.0-pre-1 In-reply-to: "Ibraheem Umaru-Mohammed"'s message of "Fri, 27 Feb 2004 16:59:10 GMT." <20040227165910.GD31494@rabox> Date: Mon, 01 Mar 2004 10:52:43 +0000 Message-ID: <18505.1078138363@csr.com> From: Peter Stephenson X-OriginalArrivalTime: 01 Mar 2004 10:54:16.0522 (UTC) FILETIME=[8A70E2A0:01C3FF7B] Ibraheem Umaru-Mohammed wrote: > I have been unable to build zsh-4.2.0-pre-1, (or zsh-4.1.1) on AIX 5.2. Any > help will be greatly appreciated. I have included the config.log, and the > last few lines before failure - should you require any more details let me > know. >... > /usr/vac/bin/cc -qlanglvl=ansi -c -I. -DHAVE_CONFIG_H -O -o init.o ini > t.c > "sigcount.h", line 2.74: 1506-186 (W) String literal must be ended before the en > d of line. > "signames.epro", line 5.74: 1506-186 (W) String literal must be ended before the > end of line. > "init.c", line 493.5: 1506-275 (S) Unexpected text 'int' encountered. > make: The error code from the last command is 1. Thanks for reporting this, although please send messages to zsh-workers@sunsite.dk, not to me personally. The code you must be executing looks uncompilable in standard C... not surprising it didn't work. Please do let us know about any more failures, we only have a limited user base for AIX. pws Index: Src/init.c =================================================================== RCS file: /cvsroot/zsh/zsh/Src/init.c,v retrieving revision 1.39 diff -u -r1.39 init.c --- Src/init.c 15 Dec 2003 22:45:29 -0000 1.39 +++ Src/init.c 1 Mar 2004 10:37:40 -0000 @@ -481,6 +481,9 @@ init_shout(void) { static char shoutbuf[BUFSIZ]; +#if defined(JOB_CONTROL) && defined(TIOCSETD) && defined(NTTYDISC) + int ldisc; +#endif if (SHTTY == -1) { @@ -490,8 +493,7 @@ } #if defined(JOB_CONTROL) && defined(TIOCSETD) && defined(NTTYDISC) - int ldisc = NTTYDISC; - + ldisc = NTTYDISC; ioctl(SHTTY, TIOCSETD, (char *)&ldisc); #endif -- Peter Stephenson Software Engineer CSR Ltd., Science Park, Milton Road, Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070 ********************************************************************** The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer. **********************************************************************