From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16340 invoked from network); 13 Jul 1999 09:35:19 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 13 Jul 1999 09:35:19 -0000 Received: (qmail 12130 invoked by alias); 13 Jul 1999 09:35:09 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7107 Received: (qmail 12123 invoked from network); 13 Jul 1999 09:35:07 -0000 From: "Bart Schaefer" Message-Id: <990713093444.ZM10805@candle.brasslantern.com> Date: Tue, 13 Jul 1999 09:34:44 +0000 In-Reply-To: <9907091543.AA40388@ibmth.df.unipi.it> Comments: In reply to Peter Stephenson "Re: --enable-dynamic and --enable-lfs in 3.1.6" (Jul 9, 5:43pm) References: <9907091543.AA40388@ibmth.df.unipi.it> X-Mailer: Z-Mail (5.0.0 30July97) To: Peter Stephenson , "ZSH workers mailing list" Subject: Re: --enable-dynamic and --enable-lfs in 3.1.6 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Jul 9, 5:43pm, Peter Stephenson wrote: } Subject: Re: --enable-dynamic and --enable-lfs in 3.1.6 } } I agree the defaults need changing at some point --- and it might as well } be now for the reasons you give. This turns them on by default (I got a } little confused between $lfs and $enable_lfs, but that's par for the } course) and changes INSTALL accordingly. Actually, you're still a little confused, I think. There appear to be some stray "x"s here: } - [if test "x$enable_lfs" != x -a "x$enable_lfs" != xyes \ } - -a "x$enable_lfs" != xno; then } - zsh_64_BIT_TYPE(${enable_lfs}, zsh_cv_64_bit_type, force) } + [if test $lfs != xyes -a $lfs != xno; then } + zsh_64_BIT_TYPE(${lfs}, zsh_cv_64_bit_type, force) It should either be [if test x$lfs != xyes -a x$lfs != xno; then zsh_64_BIT_TYPE(${lfs}, zsh_cv_64_bit_type, force) or [if test $lfs != yes -a $lfs != no; then zsh_64_BIT_TYPE(${lfs}, zsh_cv_64_bit_type, force) and I suppose it's preferably the latter. -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com