Re: crash in newlocale()

2022-08-11 Thread Ken Brown
On 8/11/2022 8:11 PM, Tony Cook wrote: On Thu, Aug 11, 2022 at 09:13:21AM -0400, Ken Brown wrote: It works fine for me: $ ./newlocale-test.exe $ echo $? 0 Where is the "Done"? You're right, there is indeed a crash in newlocale. This is provided by newlib, so the discussion moved to the

Re: crash in newlocale()

2022-08-11 Thread Tony Cook
On Thu, Aug 11, 2022 at 09:13:21AM -0400, Ken Brown wrote: > On 8/10/2022 9:29 PM, Tony Cook wrote: > > While I get a SEGV from miniperl, a simple reproducer returns a > > SIGTRAP: > > > > tony@enceladus ~/dev/perl/git > > $ cat newlocale-test.c > > #include > > #include > > > > int main() { >

Re: crash in newlocale()

2022-08-11 Thread Takashi Yano
On Thu, 11 Aug 2022 19:35:39 +0200 Corinna Vinschen wrote: > On Aug 11 21:18, Takashi Yano wrote: > > On Thu, 11 Aug 2022 11:29:28 +1000 > > Tony Cook wrote: > > > Hello everyone, > > > > > > While tracking down a crash in development versions of perl the boostrap > > > miniperl executable was

Re: gpg-agent stuck at 100%

2022-08-11 Thread Henry S. Thompson
Marco Atzeri writes: > ... > I have not noticed such issue, and my ssh-agent is always running > when cygwin is active. > > Are you running the gpg-agent for a full week or it is just a average > statistics ? I'm using gpg-agent instead of ssh-agent, so it's always running. After a week or two

Re: Warning message about not found stats package on R-4.2.1-1

2022-08-11 Thread Marco Atzeri
On 09.07.2022 13:12, Xavier Delaruelle wrote: Hello All, I am using Cygwin through GitHub actions to test the software I maintain (Environment Modules) on this system. I would like to report that after the update to the new version of the R package (4.2.1-1), a warning message appears about

Re: gpg-agent stuck at 100%

2022-08-11 Thread Marco Atzeri
On 02.08.2022 15:43, Henry S. Thompson wrote: : cygcheck -c cygwin gnupg2 cygwin 3.3.5-1 OK gnupg2 2.2.35-1 OK About once a week, gpg-agent starts consuming 100% of a CPU according to top, and any client that tries to get an answer from it hangs. kill -9 doesn't succeed. Killing with

Re: [ANNOUNCEMENT] Updated: irssi-1.4.2-1

2022-08-11 Thread Marco Atzeri
On 02.08.2022 13:14, Frank Hedrich wrote: Marco Atzeri wrote: New version 1.4.2-1 irssi The command /notify -list in irssi makes the application crash. /notify (without -list) works. This didn't happen in the previous version. I get an irssi.exe.stackdump with Exception:

[ANNOUNCEMENT] Updated: gnupg2-2.2.35-2

2022-08-11 Thread Marco Atzeri via Cygwin-announce
Version 2.2.35-2 of gnupg2 is available in the Cygwin distribution: CYGWIN CHANGES Rebuilt to remove usage of libdns and need of /etc/resolv.conf CHANGES Latest upstream security fix release https://lists.gnupg.org/pipermail/gnupg-announce/2022q2/ DESCRIPTION The GNU Privacy Guard

Updated: gnupg2-2.2.35-2

2022-08-11 Thread Marco Atzeri via Cygwin-announce
Version 2.2.35-2 of gnupg2 is available in the Cygwin distribution: CYGWIN CHANGES Rebuilt to remove usage of libdns and need of /etc/resolv.conf CHANGES Latest upstream security fix release https://lists.gnupg.org/pipermail/gnupg-announce/2022q2/ DESCRIPTION The GNU Privacy Guard

[ANNOUNCEMENT] Updated: libtirpc-1.3.3-1

2022-08-11 Thread Marco Atzeri via Cygwin-announce
Updated version 1.3.3-1 of libtirpc-common libtirpc-devel libtirpc-doc libtirpc3 have been uploaded for cygwin CHANGES Last upstream release https://sourceforge.net/p/libtirpc/mailman/message/37690832/ DESCRIPTION Libtirpc is a port of Suns Transport-Independent RPC library to Linux.

Updated: libtirpc-1.3.3-1

2022-08-11 Thread Marco Atzeri via Cygwin-announce
Updated version 1.3.3-1 of libtirpc-common libtirpc-devel libtirpc-doc libtirpc3 have been uploaded for cygwin CHANGES Last upstream release https://sourceforge.net/p/libtirpc/mailman/message/37690832/ DESCRIPTION Libtirpc is a port of Suns Transport-Independent RPC library to Linux.

[ANNOUNCEMENT] Updated: mutt-2.2.7-1

2022-08-11 Thread Marco Atzeri via Cygwin-announce
New version 2.2.7-1 of mutt is available in the Cygwin distribution: CHANGES Last upstream bugfix update release. Full details on: https://gitlab.com/muttmua/mutt/raw/master/UPDATING DESCRIPTION The Mutt E-Mail Client "All mail clients suck. This one just sucks less." Mutt is a small but

Updated: mutt-2.2.7-1

2022-08-11 Thread Marco Atzeri via Cygwin-announce
New version 2.2.7-1 of mutt is available in the Cygwin distribution: CHANGES Last upstream bugfix update release. Full details on: https://gitlab.com/muttmua/mutt/raw/master/UPDATING DESCRIPTION The Mutt E-Mail Client "All mail clients suck. This one just sucks less." Mutt is a small but

Re: crash in newlocale()

2022-08-11 Thread Corinna Vinschen
On Aug 11 21:18, Takashi Yano wrote: > On Thu, 11 Aug 2022 11:29:28 +1000 > Tony Cook wrote: > > Hello everyone, > > > > While tracking down a crash in development versions of perl the boostrap > > miniperl executable was crashing early in the build process: > > [...] > > I looked into this

[PATCH] newlocale: fix crash when trying to write to __C_locale

2022-08-11 Thread Corinna Vinschen
This simple testcase: locale_t st = newlocale(LC_ALL_MASK, "C", (locale_t)0); locale_t st2 = newlocale(LC_CTYPE_MASK, "en_US.UTF-8", st); is sufficient to reproduce a crash in _newlocale_r. After the first call to newlocale, `st' points to __C_locale, which is const. When using `st' as

Re: resolv.conf and gnupg2

2022-08-11 Thread Christian Franke
Andrey Repin wrote: Greetings, Christian Franke! ... Unfortunately the ipconfig output is always localized, so this does only work OOTB with English versions of Windows. The ipconfig parsing is also broken due to two reasons: - The current Cygwin versions of awk, grep and sed no longer

Re: crash in newlocale()

2022-08-11 Thread Ken Brown
On 8/10/2022 9:29 PM, Tony Cook wrote: While I get a SEGV from miniperl, a simple reproducer returns a SIGTRAP: tony@enceladus ~/dev/perl/git $ cat newlocale-test.c #include #include int main() { locale_t st = newlocale(LC_ALL_MASK, "C", (locale_t)0); locale_t st2 =

Re: crash in newlocale()

2022-08-11 Thread Takashi Yano
On Thu, 11 Aug 2022 11:29:28 +1000 Tony Cook wrote: > Hello everyone, > > While tracking down a crash in development versions of perl the boostrap > miniperl executable was crashing early in the build process: > > $ gdb --args ./miniperl -e0 > GNU gdb (GDB) (Cygwin 11.2-1) 11.2 > Copyright (C)

Packages of mingw64 i686/x86_64 openssl 1.1.1 are empty!

2022-08-11 Thread Carlo B.
Hello, if you look these packages: mingw64-x86_64-openssl-1.1.1q-0.1 mingw64-x86_64-openssl-1.1.1p-0.1 mingw64-i686-openssl-1.1.1q-0.1 mingw64-i686-openssl-1.1.1p-0.1 they are EMPTY. For example, the content of mingw64-x86_64-openssl-1.1.1q-0.1 is: usr/ usr/share/ usr/share/doc/