From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17200 invoked from network); 12 Apr 2001 14:54:56 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 12 Apr 2001 14:54:56 -0000 Received: (qmail 9373 invoked by alias); 12 Apr 2001 14:54:54 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13961 Received: (qmail 9304 invoked from network); 12 Apr 2001 14:54:49 -0000 Date: Thu, 12 Apr 2001 10:54:41 -0400 From: Clint Adams To: Vin Shelton Cc: zsh-workers@sunsite.auc.dk Subject: PATCH: Re: Build Failures on SunOS-4.1 and 5.5 Message-ID: <20010412105441.A24525@dman.com> References: <545wv8qb31n.fsf@icd.teradyne.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <545wv8qb31n.fsf@icd.teradyne.com>; from shelton@icd.teradyne.com on Thu, Apr 12, 2001 at 10:33:56AM -0400 > /usr/include/term.h:1180: conflicting types for `tputs' This should fix that, at least. Index: Src/prototypes.h =================================================================== RCS file: /cvsroot/zsh/zsh/Src/prototypes.h,v retrieving revision 1.1.1.3 diff -u -r1.1.1.3 prototypes.h --- Src/prototypes.h 2000/02/28 04:36:49 1.1.1.3 +++ Src/prototypes.h 2001/04/12 14:48:11 @@ -39,7 +39,9 @@ extern int tgetflag _((char *id)); extern char *tgetstr _((char *id, char **area)); extern char *tgoto _((char *cm, int destcol, int destline)); +# ifndef HAVE_TERM_H extern int tputs _((char *cp, int affcnt, int (*outc) (int))); +# endif #endif /* MISSING PROTOTYPES FOR VARIOUS OPERATING SYSTEMS */