public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* [ANNOUNCEMENT] cygwin 3.4.7-1
@ 2023-06-16 14:25 Corinna Vinschen via Cygwin-announce
  2023-06-17  8:33 ` Thomas Wolff
  0 siblings, 1 reply; 4+ messages in thread
From: Corinna Vinschen via Cygwin-announce @ 2023-06-16 14:25 UTC (permalink / raw)
  To: cygwin

The following packages have been uploaded to the Cygwin distribution:

* cygwin-3.4.7-1
* cygwin-devel-3.4.7-1
* cygwin-doc-3.4.7-1

Bug Fixes
---------

- Fix CPU_SET(3) macro type mismatch by making the macros type-safe.
  Addresses https://cygwin.com/pipermail/cygwin/2023-March/253220.html

- kill(1): don't print spurious error message.
  Addresses: https://cygwin.com/pipermail/cygwin/2023-March/253291.html

- Align behaviour of dirname in terms of leading slashes to POSIX:
  https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html

- Fix reading CONIN$ in non cygwin apps when stdin is not a pty.
  Addresses https://cygwin.com/pipermail/cygwin/2023-April/253424.html

- Fix bug in cygheap allocation size computation after fork.  Addresses:
  https://cygwin.com/pipermail/cygwin-developers/2023-April/012620.html

- Fix return value of ilogbl(NaN).
  Addresses: https://cygwin.com/pipermail/cygwin/2023-April/253511.html

- Fix error handling in readlinkat.
  Addresses: https://cygwin.com/pipermail/cygwin/2023-April/253510.html

- Fix return code and errno set by renameat2, if oldfile and newfile
  refer to the same file, and the RENAME_NOREPLACE flag is set.
  Addresses: https://cygwin.com/pipermail/cygwin/2023-April/253514.html


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ANNOUNCEMENT] cygwin 3.4.7-1
  2023-06-16 14:25 [ANNOUNCEMENT] cygwin 3.4.7-1 Corinna Vinschen via Cygwin-announce
@ 2023-06-17  8:33 ` Thomas Wolff
  2023-06-17 10:51   ` Takashi Yano
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Wolff @ 2023-06-17  8:33 UTC (permalink / raw)
  To: cygwin



Am 16/06/2023 um 16:25 schrieb Corinna Vinschen via Cygwin-announce via 
Cygwin:
> The following packages have been uploaded to the Cygwin distribution:
>
> * cygwin-3.4.7-1
> * cygwin-devel-3.4.7-1
> * cygwin-doc-3.4.7-1
>
> Bug Fixes
> ---------
>
> - Fix CPU_SET(3) macro type mismatch by making the macros type-safe.
>    Addresses https://cygwin.com/pipermail/cygwin/2023-March/253220.html
>
> - kill(1): don't print spurious error message.
>    Addresses: https://cygwin.com/pipermail/cygwin/2023-March/253291.html
>
> - Align behaviour of dirname in terms of leading slashes to POSIX:
>    https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html
>
> - Fix reading CONIN$ in non cygwin apps when stdin is not a pty.
>    Addresses https://cygwin.com/pipermail/cygwin/2023-April/253424.html
This does not fix the test case yes | more.com .

>
> - Fix bug in cygheap allocation size computation after fork.  Addresses:
>    https://cygwin.com/pipermail/cygwin-developers/2023-April/012620.html
>
> - Fix return value of ilogbl(NaN).
>    Addresses: https://cygwin.com/pipermail/cygwin/2023-April/253511.html
>
> - Fix error handling in readlinkat.
>    Addresses: https://cygwin.com/pipermail/cygwin/2023-April/253510.html
>
> - Fix return code and errno set by renameat2, if oldfile and newfile
>    refer to the same file, and the RENAME_NOREPLACE flag is set.
>    Addresses: https://cygwin.com/pipermail/cygwin/2023-April/253514.html
>
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ANNOUNCEMENT] cygwin 3.4.7-1
  2023-06-17  8:33 ` Thomas Wolff
@ 2023-06-17 10:51   ` Takashi Yano
  2023-06-17 10:57     ` Takashi Yano
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Yano @ 2023-06-17 10:51 UTC (permalink / raw)
  To: cygwin

On Sat, 17 Jun 2023 10:33:54 +0200
Thomas Wolff wrote:
> > - Fix reading CONIN$ in non cygwin apps when stdin is not a pty.
> >    Addresses https://cygwin.com/pipermail/cygwin/2023-April/253424.html
> This does not fix the test case yes | more.com .

Perhaps, this is another problem. Because, yes | more.com fails
also in console.

fail: yes | more.com
fail: yes | cat | more.com
success: yes | cat -n | more.com
success: yes yy | more.com
success: yes | unix2dos | more.com 

-- 
Takashi Yano <takashi.yano@nifty.ne.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ANNOUNCEMENT] cygwin 3.4.7-1
  2023-06-17 10:51   ` Takashi Yano
@ 2023-06-17 10:57     ` Takashi Yano
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Yano @ 2023-06-17 10:57 UTC (permalink / raw)
  To: cygwin

On Sat, 17 Jun 2023 19:51:02 +0900
Takashi Yano wrote:
> On Sat, 17 Jun 2023 10:33:54 +0200
> Thomas Wolff wrote:
> > > - Fix reading CONIN$ in non cygwin apps when stdin is not a pty.
> > >    Addresses https://cygwin.com/pipermail/cygwin/2023-April/253424.html
> > This does not fix the test case yes | more.com .
> 
> Perhaps, this is another problem. Because, yes | more.com fails
> also in console.
> 
> fail: yes | more.com
> fail: yes | cat | more.com
> success: yes | cat -n | more.com
> success: yes yy | more.com
> success: yes | unix2dos | more.com 

I guess this is a problem of more.com with line endings.
Please try:
yes | head -100 | more.com


-- 
Takashi Yano <takashi.yano@nifty.ne.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-17 10:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-16 14:25 [ANNOUNCEMENT] cygwin 3.4.7-1 Corinna Vinschen via Cygwin-announce
2023-06-17  8:33 ` Thomas Wolff
2023-06-17 10:51   ` Takashi Yano
2023-06-17 10:57     ` Takashi Yano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).