From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24517 invoked from network); 9 May 2002 15:17:46 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 9 May 2002 15:17:46 -0000 Received: (qmail 6473 invoked by alias); 9 May 2002 15:17:39 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 17111 Received: (qmail 6462 invoked from network); 9 May 2002 15:17:39 -0000 From: Borsenkow Andrej To: Bart Schaefer Cc: travis@jedi.net, zsh-workers@sunsite.dk Subject: Re: Compile errors for zsh 4.0.4 on Aix 4.3.3 In-Reply-To: <1020509150823.ZM8499@candle.brasslantern.com> References: <20020509090819.A10978@yoda.jedi.net> <1020509150823.ZM8499@candle.brasslantern.com> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3-1mdk Date: 09 May 2002 19:17:25 +0400 Message-Id: <1020957451.26762.16.camel@localhost.localdomain> Mime-Version: 1.0 =F7 =FE=D4=D7, 09.05.2002, =D7 19:08, Bart Schaefer = =CE=C1=D0=C9=D3=C1=CC: >=20 > It's a bit confusing that your build actually included term.h even = though > it was supposedly defaulting to=20 Well, the only thing it does is to put termcap first in library search order: [case "$host_os" in hpux10.*|hpux11.*|solaris*) termcap_curses_order=3D"curses ncurses termcap" ;; *) termcap_curses_order=3D"termcap curses ncurses" ;; esac])dnl Now we may not have libtermcap installed (is it possible?) or logic in termcap.c still selects USES_TERM_H. I must admit I never fully understood the logic that have been used to select between them. -andrej