Re: [PATCH 3/6] gendef generates sigfe.s and cygwin.def

2020-10-27 Thread Jon Turney
On 21/10/2020 15:31, Jon Turney wrote: On 20/10/2020 14:43, Jon Turney wrote: Express that gendef generates sigfe.s and cygwin.def in a slightly less nutty way. ---   winsup/cygwin/Makefile.in | 5 +   1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/winsup/cygwin/Makefile.in b/wi

Re: [PATCH 3/3] Remove recursive configure for cygwin

2020-10-27 Thread Jon Turney
On 22/10/2020 19:57, Jon Turney wrote: I actually skimped on writing the rules which reconfigure when needed when make is run in a subdirectory, as working them out seemed complex and a bit redundant, as when I convert to automake, it writes them for you. I guess I should take another look a

Re: [PATCH 2/3] Remove ccwrap

2020-10-27 Thread Jon Turney
On 15/10/2020 15:36, Jon Turney wrote: --- winsup/Makefile.common | 4 +-- winsup/acinclude.m4 | 16 +-- winsup/c++wrap | 6 - winsup/ccwrap| 51 winsup/configure.cygwin | 10 --- winsu

Re: [PATCH] Cygwin: fix return value of sqrtl on negative infinity

2020-10-27 Thread Corinna Vinschen
On Oct 27 10:10, Ken Brown via Cygwin-patches wrote: > The return value is now -NaN. > > This fixes a bug in the mingw-w64 code that was imported into Cygwin. > The fix is consistent with Posix and Linux. It is also consistent > with the current mingw-w64 code, with one exception: The mingw-w64 >

[PATCH] Cygwin: fix return value of sqrtl on negative infinity

2020-10-27 Thread Ken Brown via Cygwin-patches
The return value is now -NaN. This fixes a bug in the mingw-w64 code that was imported into Cygwin. The fix is consistent with Posix and Linux. It is also consistent with the current mingw-w64 code, with one exception: The mingw-w64 code sets errno to EDOM if the input is -NaN, but this appears t

Re: [PATCH] Cygwin: pty: Disable ResizePseudoConsole() if stdout is redirected.

2020-10-27 Thread Corinna Vinschen
On Oct 27 17:26, Takashi Yano via Cygwin-patches wrote: > - Calling ResizePseudoConsole() generates some escape sequences. > Due to this behaviour, if the output of non-cygwin app is piped > to less, screen is sometimes distorted when the screen is resized. > With this patch, ResizePseudoCons

[PATCH] Cygwin: pty: Disable ResizePseudoConsole() if stdout is redirected.

2020-10-27 Thread Takashi Yano via Cygwin-patches
- Calling ResizePseudoConsole() generates some escape sequences. Due to this behaviour, if the output of non-cygwin app is piped to less, screen is sometimes distorted when the screen is resized. With this patch, ResizePseudoConsole() is not called if stdout is redirected. --- winsup/cygwi