From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15205 invoked from network); 19 Mar 2009 17:39:35 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 19 Mar 2009 17:39:35 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 96087 invoked from network); 19 Mar 2009 17:39:32 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 19 Mar 2009 17:39:32 -0000 Received: (qmail 5579 invoked by alias); 19 Mar 2009 17:39:27 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26761 Received: (qmail 5567 invoked from network); 19 Mar 2009 17:39:26 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 19 Mar 2009 17:39:26 -0000 Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.232]) by bifrost.dotsrc.org (Postfix) with ESMTP id E9F368058B64 for ; Thu, 19 Mar 2009 18:39:22 +0100 (CET) Received: by rv-out-0506.google.com with SMTP id g37so624257rvb.21 for ; Thu, 19 Mar 2009 10:39:21 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.144.6 with SMTP id r6mr898400rvd.185.1237484361019; Thu, 19 Mar 2009 10:39:21 -0700 (PDT) Date: Thu, 19 Mar 2009 10:39:21 -0700 Message-ID: <691a5d910903191039j2b022c5fl957a0950f91f5dfa@mail.gmail.com> Subject: hist.c (workers/26754, Revision: 1.4627) fails to compile on OSX From: Bart Schaefer To: zsh-workers@sunsite.dk Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV 0.92.1/9141/Thu Mar 19 17:24:25 2009 on bifrost X-Virus-Status: Clean hist.c: In function =91chrealpath=92: hist.c:1610: error: =91lastpos=92 undeclared (first use in this function) hist.c:1610: error: (Each undeclared identifier is reported only once hist.c:1610: error: for each function it appears in.) hist.c:1611: error: =91nonreal=92 undeclared (first use in this function) hist.c:1623: error: =91real=92 undeclared (first use in this function) make[2]: *** [hist.o] Error 1 Index: Src/hist.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/zsh/zsh/Src/hist.c,v retrieving revision 1.92 diff -u -r1.92 hist.c --- Src/hist.c 19 Mar 2009 15:00:23 -0000 1.92 +++ Src/hist.c 19 Mar 2009 17:38:19 -0000 @@ -1583,7 +1583,7 @@ #ifdef HAVE_CANONICALIZE_FILE_NAME char *lastpos, *nonreal, *real; #else -# ifdef HAVE_REAL_PATH +# ifdef HAVE_REALPATH char *lastpos, *nonreal, real[PATH_MAX]; # endif #endif