Re: XWin can't hold OpenGL picture, has WS_DISABLED and WS_EX_TRANSPARENT styles?

2019-11-12 Thread Mick Pearson
Sorry (I don't know how to you L A Walsh reply so am replying to myself with the same subject) I think I meant to include this (https://sourceware.org/bugzilla/show_bug.cgi?id=25170) link that includes this link:

Re: Unexpected behavior from cygpath command

2019-11-12 Thread Frank Redeker
Am 12.11.2019 um 23:16 schrieb Alfred von Campe: > I have two almost identical build servers, but cygpath is not behaving as > expected on one of them. Here is the output from the “good” build server: > > $ cygpath.exe —version | head -1 > cygpath (cygwin) 2.11.2 > > $ cygpath -d

Updated: mingw64-{headers,runtime,winpthreads} 7.0.0-1

2019-11-12 Thread JonY
Now released for both 32bit and 64bit Cygwin: Notable changes: * _FORTIFY_SOURCE support thanks to Christian Franke. * Lots of math fixes from Martin Storsjö. * Many headers updated from Wine by Jacek Caban. * UCRT support by Martin Storsjö. *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO

[ANNOUNCEMENT] Updated: mingw64-{headers,runtime,winpthreads} 7.0.0-1

2019-11-12 Thread JonY
Now released for both 32bit and 64bit Cygwin: Notable changes: * _FORTIFY_SOURCE support thanks to Christian Franke. * Lots of math fixes from Martin Storsjö. * Many headers updated from Wine by Jacek Caban. * UCRT support by Martin Storsjö. *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO

Unexpected behavior from cygpath command

2019-11-12 Thread Alfred von Campe
I have two almost identical build servers, but cygpath is not behaving as expected on one of them. Here is the output from the “good” build server: $ cygpath.exe —version | head -1 cygpath (cygwin) 2.11.2 $ cygpath -d 'E:\Program Files (x86)\IAR Systems' E:\PROGRA~1\IARSYS~1 Cygpath

Looking to set up a partial mirror of Cygwin package server

2019-11-12 Thread dmytro.shmagin.barclays.com via cygwin
Hi all, We're looking to set up a partial mirror of the Cygwin package servers to serve the few (around 50) packages that we use on a daily basis - essentially setting up a repo for our users to download those Cygwin apps which are approved on our system. Essentially, we'd like to have our

RE: cygrunsrv patch

2019-11-12 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via cygwin-patches
> git://sourceware.org/git/cygwin-apps/cygrunsrv.git Thanks, that worked. I was using a static source archive (cygrunsrv-1.62) to make all the changes, so didn't need git until now.

Re: cygrunsrv patch

2019-11-12 Thread Achim Gratz
Lavrentiev, Anton (NIH/NLM/NCBI) [C] via cygwin-patches writes: > $ git clone 'https://cygwin.com/git/?p=cygwin-apps/cygrunsrv.git' ./cygrunsrv > Cloning into './cygrunsrv'... > fatal: repository 'https://cygwin.com/git/?p=cygwin-apps/cygrunsrv.git/' not > found Try

cygrunsrv patch

2019-11-12 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via cygwin-patches
Hi, Looks like I finally prepared a patch for cygrunsrv that I mentioned as an added feature way back in Feb (I did not need to come around to that since then): https://cygwin.com/ml/cygwin/2019-02/msg00173.html But the GIT URL given in the message does not seem to work for me:

--enable-auto-image-base with argument on 64-bit

2019-11-12 Thread E. Madison Bray
Hello, Some years ago Christopher Faylor added a feature [1] to binutils so that the --enable-auto-image-base argument to ld can take an optional argument (specifying the minimum base address). This was applied for 32-bit, but there is a separate template file for 64-bit [2] which (deceptively,

[PATCH] Cygwin: console: Revise the code checking if the console is legacy.

2019-11-12 Thread Takashi Yano
- Accessing shared_console_info before initializing causes access violation in checking if the console is legacy mode. This patch fixes this issue. This solves the problem reported in: https://www.cygwin.com/ml/cygwin-patches/2019-q4/msg00099.html --- winsup/cygwin/fhandler_console.cc | 29

Re: [PATCH v3] Cygwin: console, pty: Prevent error in legacy console mode.

2019-11-12 Thread Takashi Yano
On Tue, 12 Nov 2019 13:46:04 + Ken Brown wrote: > On 11/11/2019 9:55 PM, Takashi Yano wrote: > > Hi Ken, > > > > On Mon, 11 Nov 2019 19:39:46 + > > Ken Brown wrote: > >> After this commit, the XWin Server Start Menu shortcut no longer works. I > >> think > >> it's

Re: [PATCH v3] Cygwin: console, pty: Prevent error in legacy console mode.

2019-11-12 Thread Ken Brown
On 11/11/2019 9:55 PM, Takashi Yano wrote: > Hi Ken, > > On Mon, 11 Nov 2019 19:39:46 + > Ken Brown wrote: >> After this commit, the XWin Server Start Menu shortcut no longer works. I >> think >> it's /usr/bin/xwin-xdg-menu.exe that fails, but I haven't checked this >> carefully. > >

[PATCH] Cygwin: pty: Use redraw screen instead of clear screen.

2019-11-12 Thread Takashi Yano
- Previously, pty cleared screen at startup for synchronization between the real screen and console screen buffer for pseudo console. With this patch, instead of clearing screen, the screen is redrawn when the first native program is executed after pty is created. In other words,

Re: [PATCH] Cygwin: pty: Disable clear screen for ssh sessions with -t option.

2019-11-12 Thread Takashi Yano
Hi Corinna and Michael, On Mon, 11 Nov 2019 11:04:54 +0100 Michael Haubenwallner wrote: > On 11/11/19 10:17 AM, Corinna Vinschen wrote: > > I tested it and I think this is a great step forward. Dropping > > $TERM checks and clear screen sequence is the way to go! > > I second that! Thanks for