Re: RE: [EXTERNAL] [BULK] Re: Internal Server Error running perl script in browser

2022-11-17 Thread René Berber
On 11/17/2022 12:57 PM, Michael Lascuola via Cygwin wrote: Thanks for the response! Forgive me, as I am SQL Server DBA. Is there another way I should check this? $ perl -v This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-cygwin-threads-multi (with 7 registered patches, see

Re: Can I rename my C:\Cygwin64 directory to C:\Cygwin?

2022-11-17 Thread Jim Reisert AD1C
On Thu, Nov 17, 2022 at 11:35 AM Andrey Repin wrote: Please look for my earlier message[1](thread) regarding installation path > changes for provided PowerShell script. > > > Where does setup.exe get its information from? Is there a .ini file > > that I will need to edit? > > The rest of the inf

RE: [EXTERNAL] [BULK] Re: Internal Server Error running perl script in browser

2022-11-17 Thread Michael Lascuola via Cygwin
Thanks for the response! Forgive me, as I am SQL Server DBA. Is there another way I should check this? $ perl -v This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-cygwin-threads-multi (with 7 registered patches, see perl -V for more detail) Copyright 1987-2021, Larry Wall

Re: Internal Server Error running perl script in browser

2022-11-17 Thread René Berber
On 11/17/2022 10:22 AM, Michael Lascuola via Cygwin wrote: Good day! I have an issue where I receive "Internal Server Error" when running perl scripts in the browser. Here's an example script that works OK when running from the Cygwin Terminal: #!/usr/local/bin/perl That is not Cygwin perl

Re: Can I rename my C:\Cygwin64 directory to C:\Cygwin?

2022-11-17 Thread Andrey Repin
Greetings, Jim Reisert AD1C! > Now that Cygwin x86 is nearing/has reached end-of-life, I would like > to rename my C:\Cygwin64 directory to C:\Cygwin. > Other than updating my Windows environment variable (CYGROOT), are > there any "gotchas" in doing this? I already have a D:\Home directory > sp

Re: --text option of grep v3.7-2 not stripping CR from EoL

2022-11-17 Thread Brian Inglis
On Mon, 14 Nov 2022 22:22:31 -0800, Ilya Zakharevich wrote: grep with -a (or --text) option does not strip CR from line ends That has been the case for over five years, as discussed about 2017-02, decided and announced in utilities releases that month (gawk, grep, sed) and earlier in bash IIR

Can I rename my C:\Cygwin64 directory to C:\Cygwin?

2022-11-17 Thread Jim Reisert AD1C
Now that Cygwin x86 is nearing/has reached end-of-life, I would like to rename my C:\Cygwin64 directory to C:\Cygwin. Other than updating my Windows environment variable (CYGROOT), are there any "gotchas" in doing this? I already have a D:\Home directory specified in /etc/nsswitch.conf so I'm not

Internal Server Error running perl script in browser

2022-11-17 Thread Michael Lascuola via Cygwin
Good day! I have an issue where I receive "Internal Server Error" when running perl scripts in the browser. Here's an example script that works OK when running from the Cygwin Terminal: #!/usr/local/bin/perl use DBI; my @ary = DBI->available_drivers(); print @ary; print "Content-type:text/htm

Re: Sharing my packages for CYGWIN

2022-11-17 Thread Ken Brown
On 11/17/2022 10:18 AM, Carlo B. wrote: Hello, at this address I did a repository of packages that I made for CYGWIN: https://github.com/carlo-bramini/packages-cygwin Sometimes, when I need something not existing (or newer) into the official list of packages for CYGWIN, I upload it here. All th

Sharing my packages for CYGWIN

2022-11-17 Thread Carlo B.
Hello, at this address I did a repository of packages that I made for CYGWIN: https://github.com/carlo-bramini/packages-cygwin Sometimes, when I need something not existing (or newer) into the official list of packages for CYGWIN, I upload it here. All these packages exists also in all major linu

Re: Writing unit tests for newlib/libc/unix/dirname.c

2022-11-17 Thread Csaba Raduly
On Wed, 16 Nov 2022 at 18:57, Kevin Connor Arpe wrote: > I am trying to write unit tests for newlib/libc/unix/dirname.c. > (That function has so many tricky corner cases!) > I tried to follow from: newlib/testsuite/newlib.string/memcpy-1.c > However, I cannot make unit tests run via: make test > >