Re: [PATCH v2] Cygwin: pty: Reduce unecessary input transfer.

2021-12-09 Thread Johannes Schindelin
Hi Takashi, sorry for responding to a patch you sent almost 10 months ago... but... I am struggling with it. First of all, let me describe the problem I am seeing (see also https://github.com/git-for-windows/git/issues/3579): after upgrading the MSYS2 runtime to v3.3.3 in Git for Windows,

Re: [ITP] autoconf2.7

2021-12-09 Thread Achim Gratz
Ken Brown writes: > I agree, as I already said in a different thread. Either way, there > remains the question of how to get cygport patched. Until that > happens, no maintainers can use autoconf 2.71 unless they patch > cygport locally, and no SCALLYWAG builds can use autoconf 2.71. I've

Re: [ANNOUNCEMENT] Updated: lapack-3.10.0-1

2021-12-09 Thread Marco Atzeri
On 09.12.2021 17:16, Marco Atzeri wrote: On 09.12.2021 14:27, airplanemath via Cygwin wrote: On Tue, Nov 30 2021, Marco Atzeri via Cygwin-announce via Cygwin wrote: New versions 3.10.0-1 of liblapack0 liblapack-devel liblapack-doc are available in the Cygwin distribution. The shared

Re: [ANNOUNCEMENT] Updated: lapack-3.10.0-1

2021-12-09 Thread Marco Atzeri
On 09.12.2021 14:27, airplanemath via Cygwin wrote: On Tue, Nov 30 2021, Marco Atzeri via Cygwin-announce via Cygwin wrote: New versions 3.10.0-1 of liblapack0 liblapack-devel liblapack-doc are available in the Cygwin distribution. The shared libraries seem to be in /usr/bin rather

Re: Help with the prunepaths option with findutils updatedb locate

2021-12-09 Thread Brian Inglis
On 2021-12-09 07:16, Keith Christian wrote: I'm trying to keep the many directories with "OneDrive" in the pathname out of the locatedb file, as I don't care to see them in locate's output, nor bloat the locatedb file. I'd appreciate any insight into the prunepaths option for the test case

Re: [ITP] autoconf2.7

2021-12-09 Thread Ken Brown
On 12/9/2021 5:24 AM, Corinna Vinschen wrote: On Dec 8 19:46, Achim Gratz wrote: Achim Gratz writes: + case "${WANT_AUTOCONF}" in + 2.5|'') + WANT_AUTOCONF=2.5 + case $(autoconf --version 2> /dev/null | head -n 1) in

Re: [ANNOUNCEMENT] gd 2.3.3-1 (TEST)

2021-12-09 Thread Ken Brown
On 9/15/2021 5:13 PM, Ken Brown via Cygwin-announce via Cygwin wrote: The following packages have been uploaded to the Cygwin distribution as test releases: * gd-2.3.3-1 * libgd3-2.3.3-1 * libgd-devel-2.3.3-1 These have now been promoted from test to current. Ken -- Problem reports:

Help with the prunepaths option with findutils updatedb locate

2021-12-09 Thread Keith Christian
Fellow Cygwin fans, I'm trying to keep the many directories with "OneDrive" in the pathname out of the locatedb file, as I don't care to see them in locate's output, nor bloat the locatedb file. I'd appreciate any insight into the prunepaths option for the test case below, (Line 10,) and how to

Re: [ANNOUNCEMENT] Updated: lapack-3.10.0-1

2021-12-09 Thread airplanemath via Cygwin
On Tue, Nov 30 2021, Marco Atzeri via Cygwin-announce via Cygwin wrote: > New versions 3.10.0-1 of > > liblapack0 > liblapack-devel > liblapack-doc > > are available in the Cygwin distribution. The shared libraries seem to be in /usr/bin rather than /usr/lib/lapack now. I don't remember the

Re: [PATCH] Cygwin: path: Fix path conversion of virtual drive.

2021-12-09 Thread Takashi Yano
On Thu, 9 Dec 2021 11:08:46 +0100 Corinna Vinschen wrote: > On Dec 9 17:17, Takashi Yano wrote: > > + if (!QueryDosDeviceW (drive, remote, MAX_PATH)) > > + goto file_not_symlink; /* fallback */ > > + > > + int remlen = wcslen (remote); > >

[PATCH v2] Cygwin: path: Fix path conversion of virtual drive.

2021-12-09 Thread Takashi Yano
- The last change in path.cc introduced a bug that causes an error when accessing a virtual drive which mounts UNC path such as "\\server\share\dir" rather than "\\server\share". This patch fixes the issue. --- winsup/cygwin/path.cc | 56 +++ 1 file

Re: [ITP] autoconf2.7

2021-12-09 Thread Corinna Vinschen
On Dec 8 19:46, Achim Gratz wrote: > Achim Gratz writes: > > + case "${WANT_AUTOCONF}" in > > + 2.5|'') > > + WANT_AUTOCONF=2.5 > > + case $(autoconf --version 2> /dev/null | head -n 1) in > > autoconf*2.[56]?) ;; > >

Re: [PATCH] Cygwin: path: Fix path conversion of virtual drive.

2021-12-09 Thread Corinna Vinschen
Hi Takashi, On Dec 9 17:17, Takashi Yano wrote: > - The last change in path.cc introduced a bug that causes an error > when accessing a virtual drive which mounts UNC path such as > "\\server\share\dir" rather than "\\server\share". This patch > fixes the issue. > --- >

Re: vboxsharedfs - Too many levels of symbolic links

2021-12-09 Thread Corinna Vinschen
On Dec 9 17:16, Takashi Yano wrote: > On Wed, 8 Dec 2021 11:37:39 +0100 > Corinna Vinschen wrote: > > On Dec 8 17:20, Takashi Yano wrote: > > > On Tue, 7 Dec 2021 18:15:42 +0100 > > > I confirmed that your patch works nicely. > > > > > > ...except when the drive is created by subst using UNC

XEmacs versus Cygwin 3.3 (was Re: Another pipe-related problem?)

2021-12-09 Thread Aidan Kehoe
Ar an t-ochtú lá de mí na Nollaig, scríobh Henry S. Thompson: > [...] > #define STRIDE sizeof (STRIDE_TYPE) > > Ken/Aidan, is it possible that the last line interacts badly with some > (stale?) #ifdef code at lines 177 and 190 in sysdep.c [attached for > Ken's benefit] in a way that

[PATCH] Cygwin: path: Fix path conversion of virtual drive.

2021-12-09 Thread Takashi Yano
- The last change in path.cc introduced a bug that causes an error when accessing a virtual drive which mounts UNC path such as "\\server\share\dir" rather than "\\server\share". This patch fixes the issue. --- winsup/cygwin/path.cc | 50 +-- 1 file

Re: vboxsharedfs - Too many levels of symbolic links

2021-12-09 Thread Takashi Yano
On Wed, 8 Dec 2021 11:37:39 +0100 Corinna Vinschen wrote: > On Dec 8 17:20, Takashi Yano wrote: > > On Tue, 7 Dec 2021 18:15:42 +0100 > > I confirmed that your patch works nicely. > > > > ...except when the drive is created by subst using UNC path, > > e.g. subst w: \\server\share. > > > > In