Re: bug with grep 3.0.2 in cygwin 3.0.7

2019-08-29 Thread Brian Inglis
On 2019-08-29 19:42, Eliot Moss wrote: > On 8/29/2019 3:08 PM, Andrey Repin wrote: >>> I encounter some problem with grep option -E on cygwin 3.0.7 >>> echo "a^b" | grep "a^b" #answer a^b ie it's OK >>> but >>> echo "a^b" | grep -E "a^b" #answer nothing " for me it's KO >> That's an expected result

Re: bug with grep 3.0.2 in cygwin 3.0.7

2019-08-29 Thread Eliot Moss
On 8/29/2019 3:08 PM, Andrey Repin wrote: Greetings, ak...@free.fr! Hi, I encounter some problem with grep option -E on cygwin 3.0.7 echo "a^b" | grep "a^b" #answer a^b ie it's OK but echo "a^b" | grep -E "a^b" #answer nothing " for me it's KO That's an expected result of an impossible co

Re: Cygcheck.out sent to list causes email to get blocked (was Re: unset TMP Variable issue)

2019-08-29 Thread Brian Inglis
On 2019-08-29 05:05, L A Walsh wrote: > On 2019/07/20 16:30, Nikos Balkanas wrote: >>> >>> Attached is the zipped cygcheck output with user names crossed out >>> > > Worry, but your attachment of the output never came through. Neither > did mind. > > Looks like the mailing list software dis

Re: [ANNOUNCEMENT] TEST: fetchmail 6.4.0.rc3-1

2019-08-29 Thread Andrey Repin
Greetings, Eliza! > fetchmail -v got the same error at the bottom lines. > unable to get local issuer certificate > fetchmail: Broken certification chain at: /C=US/O=DigiCert > Inc/OU=www.digicert.com/CN=GeoTrust RSA CA 2018 > fetchmail: This could mean that the server did not provide the > i

Re: Doxygen 1.8.16

2019-08-29 Thread Ken Brown
On 8/29/2019 11:34 AM, Yaakov Selkowitz wrote: > On Thu, 2019-08-29 at 14:25 +, Ken Brown wrote: >> On 8/29/2019 8:51 AM, Kptain wrote: >>> Is it possible to make available release 1.8.16 of Doxygen as lot of fixes >>> have been provided? >> >> Yes, I'll do that within the next few days. > > W

Re: Physical path resolution does not handle parent junction points

2019-08-29 Thread Andrey Repin
Greetings, Dan Levi! > Open terminal (as admin): > [~] $ mkdir -p A/B > [~] $ ln -s A C > [~] $ cmd /c "mklink /j D A" > Junction created for D <<===>> A > [~] $ (cd C/B ; pwd -P) > /home/me/A/B > [~] $ (cd D/B ; pwd -P) > /home/me/D/B > The last output should be /home/me/A/B, not /home/me/D/B.

Re: bug with grep 3.0.2 in cygwin 3.0.7

2019-08-29 Thread Andrey Repin
Greetings, ak...@free.fr! > Hi, > I encounter some problem with grep option -E on cygwin 3.0.7 > echo "a^b" | grep "a^b" #answer a^b ie it's OK > but > echo "a^b" | grep -E "a^b" #answer nothing " for me it's KO That's an expected result of an impossible constraint. > I have to backslash

Re: [ANNOUNCEMENT] TEST: fetchmail 6.4.0.rc3-1

2019-08-29 Thread René Berber
On 8/28/2019 10:05 PM, Eliza wrote: [snip] > Yes the certs files are there: > > $ ls /etc/pki/tls/certs > ca-bundle.crt  ca-bundle.trust.crt Oops! Sorry, that's just the location of links to the real certs. Better try: ls -al /etc/pki/ca-trust/extracted/{pem,openssl} In .fetchmailrc, is there

Physical path resolution does not handle parent junction points

2019-08-29 Thread Dan Levi
Open terminal (as admin): [~] $ mkdir -p A/B [~] $ ln -s A C [~] $ cmd /c "mklink /j D A" Junction created for D <<===>> A [~] $ (cd C/B ; pwd -P) /home/me/A/B [~] $ (cd D/B ; pwd -P) /home/me/D/B The last output should be /home/me/A/B, not /home/me/D/B. realpath displays the same behavior. --

[ANNOUNCEMENT] TEST: Cygwin 3.1.0-0.3

2019-08-29 Thread Biswapriyo Nath
On Thursday, August 29, 2019, Corinna Vinschen wrote: > Support the new pseudo console in PTY. Pseudo console is a new feature in Windows 10 1809, which provides console APIs on virtual terminal. Some queries about this specific feature: 1a. In fhandler_pty_mater::ioctl function, shouldn't the

Re: Doxygen 1.8.16

2019-08-29 Thread Yaakov Selkowitz
On Thu, 2019-08-29 at 14:25 +, Ken Brown wrote: > On 8/29/2019 8:51 AM, Kptain wrote: > > Is it possible to make available release 1.8.16 of Doxygen as lot of fixes > > have been provided? > > Yes, I'll do that within the next few days. When you do, make sure you update your installation firs

Re: Possible Cygwin setup regression with --prune-install

2019-08-29 Thread szgyg
On 2019-08-29, Shaddy Baddah wrote: > I have a use-case for Cygwin setup, which I admit will seem strange, > whereby I want it to do an "Install" with no packages selected at all. > ie., just setup a "skeleton" of a Cygwin install. I value it, because > based my own experience with the Cygwin setup

Re: Odd, is it not? mkdir 'e:\' cannot be undone by rmdir 'e:\' ...

2019-08-29 Thread Houder
On Wed, 28 Aug 2019 16:22:20, Corinna Vinschen wrote: > > As simple as that? > > > > diff --git a/winsup/cygwin/dir.cc b/winsup/cygwin/dir.cc > > index b757851d5c7f..747b1582af50 100644 > > --- a/winsup/cygwin/dir.cc > > +++ b/winsup/cygwin/dir.cc > > @@ -314,13 +314,13 @@ mkdir (const char *dir,

Re: Doxygen 1.8.16

2019-08-29 Thread Ken Brown
On 8/29/2019 8:51 AM, Kptain wrote: > Is it possible to make available release 1.8.16 of Doxygen as lot of fixes > have been provided? Yes, I'll do that within the next few days. Ken -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documenta

Doxygen 1.8.16

2019-08-29 Thread Kptain
Hi all, Is it possible to make available release 1.8.16 of Doxygen as lot of fixes have been provided? Thanks in advance, -- Sent from: http://cygwin.1069669.n5.nabble.com/Cygwin-list-f3.html -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/

[ANNOUNCEMENT] TEST: Cygwin 3.1.0-0.3

2019-08-29 Thread Corinna Vinschen
Hi folks, I uploaded a new Cygwin test release 3.1.0-0.3 This release comes with a couple of new features and quite a few bug fixes. The most interesting changes: - A revamp of the old FIFO code. It should now be possible to open FIFOs multiple times for writing, something the old code fail

Re: Cygcheck.out sent to list causes email to get blocked (was Re: unset TMP Variable issue)

2019-08-29 Thread Nikos Balkanas
Seems so. However, I was lucky enough to fix my problem on my own:) BR, Nikos On Thu, Aug 29, 2019 at 2:05 PM L A Walsh wrote: > > On 2019/07/20 16:30, Nikos Balkanas wrote: > >> > >> Attached is the zipped cygcheck output with user names crossed out > >> > > Worry, but your attachment of the o

Cygcheck.out sent to list causes email to get blocked (was Re: unset TMP Variable issue)

2019-08-29 Thread L A Walsh
On 2019/07/20 16:30, Nikos Balkanas wrote: >> >> Attached is the zipped cygcheck output with user names crossed out >> Worry, but your attachment of the output never came through. Neither did mind. Looks like the mailing list software discards cygcheck.out output now, which seems to make th

Re: fetchmail issue

2019-08-29 Thread Corinna Vinschen
On Aug 29 09:00, Eliza wrote: > > > on 2019/8/28 20:55, Corinna Vinschen wrote: > > The old fetchmail was not linked against openSSL and so was unable to > > handle pops/imaps. > > > > I've uploaded a test release of the upcoming new version of fetchmail, > > 6.4.0, based on the latest rc3: > >