From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27218 invoked from network); 17 Mar 2006 23:09:16 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,FORGED_RCVD_HELO autolearn=ham version=3.1.1 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 17 Mar 2006 23:09:16 -0000 Received: (qmail 53727 invoked from network); 17 Mar 2006 23:09:10 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 17 Mar 2006 23:09:10 -0000 Received: (qmail 23543 invoked by alias); 17 Mar 2006 23:09:07 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 22363 Received: (qmail 23534 invoked from network); 17 Mar 2006 23:09:06 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 17 Mar 2006 23:09:06 -0000 Received: (qmail 53522 invoked from network); 17 Mar 2006 23:09:06 -0000 Received: from smtp1-g19.free.fr (212.27.42.27) by a.mx.sunsite.dk with SMTP; 17 Mar 2006 23:09:04 -0000 Received: from [192.168.0.5] (coudert.name [82.239.100.53]) by smtp1-g19.free.fr (Postfix) with ESMTP id 3273B9A2EA; Sat, 18 Mar 2006 00:09:03 +0100 (CET) In-Reply-To: <20060317184643.GI24877@dot.blorf.net> References: <19c433eb0603170208y5f4287c7m1c7b76da501fc8e1@mail.gmail.com> <20060317181845.75bd6fce.g.fischer@ah-online.com> <19c433eb0603170945y2d70a602j1ece0ba7b2bdcf49@mail.gmail.com> <20060317184643.GI24877@dot.blorf.net> Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable Cc: goetz fischer , zsh-workers@sunsite.dk From: FX Coudert Subject: Re: zsh 4.3.2 bug Date: Sat, 18 Mar 2006 00:09:02 +0100 To: Wayne Davison X-Mailer: Apple Mail (2.623) Le 17 mars 06, =E0 19:46, Wayne Davison a =E9crit : > On Fri, Mar 17, 2006 at 06:45:53PM +0100, Fran?ois-Xavier Coudert=20 > wrote: >> $ uname -a >> IRIX64 xxx 6.5 10060437 IP27 mips unknown Irix >> $ cc -v >> MIPSpro Compilers: Version 7.4.2m > > What are you using for awk? Is is gawk? mawk? nawk? awk? $ which awk /usr/bin/awk $ awk -v UX:awk: ERROR: No program given $ awk -help UX:awk: WARNING: Unknown option -help ignored UX:awk: ERROR: No program given $ awk -V UX:awk: WARNING: Unknown option -V ignored UX:awk: ERROR: No program given Doesn't help much :) > I'm betting > that the failure that goetz is experiencing is related to this (as I > mentioned in my prior reply to him on the subject). Another reason = may > well be that your build found a different signal.h header file to=20 > parse: > what is the value of SIGNAL_H in your config.log file? SIGNAL_H=3D'/usr/include/internal/signal_core.h' configure:11345: result: no configure:11366: checking what style of signals to use configure:11397: result: POSIX_SIGNALS configure:11400: checking where signal.h is located configure:11439: result: /usr/include/internal/signal_core.h And I do have: $ grep -i signal config.h /* Define to 1 if you use BSD style signal handling (and can block=20 signals). /* #undef BSD_SIGNALS */ /* Define to 1 if `ru_nsignals' is member of `struct rusage'. */ #define HAVE_STRUCT_RUSAGE_RU_NSIGNALS 1 /* Define to 1 if you have no signal blocking at all (bummer). */ /* #undef NO_SIGNAL_BLOCKING */ /* Define to 1 if you use POSIX style signal handling. */ #define POSIX_SIGNALS 1 /* Define as the return type of signal handlers (`int' or `void'). */ /* Define to 1 if you use SYS style signal handling (and can block=20 signals). /* #undef SYSV_SIGNALS */ /* Define to `unsigned int' if or doesn't=20 define */ FX=