Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: --enable-dynamic and --enable-lfs in 3.1.6
- X-seq: zsh-workers 7107
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: Peter Stephenson <pws@xxxxxxxxxxxxxxxxx>,        "ZSH workers mailing list" <zsh-workers@xxxxxxxxxxxxxx>
- Subject: Re: --enable-dynamic and --enable-lfs in 3.1.6
- Date: Tue, 13 Jul 1999 09:34:44 +0000
- In-reply-to: <9907091543.AA40388@xxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
- References: <9907091543.AA40388@xxxxxxxxxxxxxxxxx>
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
Messages sorted by:
Reverse Date,
Date,
Thread,
Author