Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh 5.0.8 available (preliminary announcement)
- X-seq: zsh-workers 35355
 
- From: Baptiste Daroussin <baptiste.daroussin@xxxxxxxxx>
 
- To: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
 
- Subject: Re: zsh 5.0.8 available (preliminary announcement)
 
- Date: Tue, 2 Jun 2015 00:13:30 +0200
 
- Cc: Zsh hackers list <zsh-workers@xxxxxxx>
 
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed;        d=gmail.com; s=20120113;        h=mime-version:in-reply-to:references:from:date:message-id:subject:to         :cc:content-type;        bh=fYp2YxtoXY6a4RBMmr8Us2ybgt9rYTGwj2PQ4YTnz6g=;        b=IoUtmFW0eGvs+Jh6G6LamtGjH2L2hi9zTaYwSrc0NeN2oVosRgtolHIfkXMwIOUNNd         U+vJjvcIEm7gcJuhBqWU8OeT42ssNWLzQA8zwPG8UGkcmicTnmZPkCaM/1Jn9iXObMjE         d/H29XuJHgCPTzmV71LemRfzSJK5q1Ne0T385Vwf9m/OdQcYo5JAqdjciCRTsF5eVgFw         9JM6qXu2Ks9XDXH/r1Jh1bM4JEfyPUOdZ6KDhfKqD5M8stqLbrKClsLD6ObjJD+23tTy         3RH+9Fv5sjTF2w34aBJ4yFT8ueKHcS4WqqUIOP8lUHoE7fmJiriJwsaGV5/ka/9GMufi         TttA==
 
- In-reply-to: <150531171724.ZM29828@torch.brasslantern.com>
 
- List-help: <mailto:zsh-workers-help@zsh.org>
 
- List-id: Zsh Workers List <zsh-workers.zsh.org>
 
- List-post: <mailto:zsh-workers@zsh.org>
 
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
 
- References: <20150531192334.26a88ef9@ntlworld.com> <150531171724.ZM29828@torch.brasslantern.com>
 
2015-06-01 2:17 GMT+02:00 Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>:
> On May 31,  7:23pm, Peter Stephenson wrote:
> }
> } Please could people have a quick check there's nothing major broken
> } before I announce it more widely.
>
> Passes "make check" on Ubuntu 12.04.5 and MacOS 10.9.5 (gnu tools).
On FreeBSD I have 5 tests failing (actually for a couple of release of
zsh) all related to zpty.
This time I found time to analyse the code.
It appears that freebsd has posix_openpt, but the code using that only
used if USE_DEV_PTMX is defined (which is not on FreeBSD)
Switching the #ifdef USE_DEV_PTMX line 157 to:
#if defined(HAVE_POSIX_OPENPT) || defined(USE_DEV_PTMX)
after doing that all tests passes.
regards,
Bapt
Messages sorted by:
Reverse Date,
Date,
Thread,
Author