Re: gl_SILENT

2020-09-18 Thread Bruno Haible
Paul Eggert wrote: > > The file descriptor 2 is unaffected by the file descriptor > > reshuffle. Only file descriptor 6 is affected, which is the one used by > > AC_MSG_CHECKING/AC_MSG_RESULT. No one is supposed to use this file > > descriptor > > in a 'trap' action. > > Ah, sorry, I misread it.

fsusage, getaddrinfo: Produce more regular configure output

2020-09-18 Thread Bruno Haible
Two particular long lines stay out in configure output: checking how to do getaddrinfo, freeaddrinfo and getnameinfo... checking for library containing getaddrinfo... none required checking for getaddrinfo... yes checking how to get file system space usage... checking for statvfs function (SVR4

Re: libsigsegv on LinuxFromScratch

2020-09-18 Thread Bruce Dubbs
On 9/18/20 6:24 PM, Bruno Haible wrote: Bruce Dubbs wrote in : checking for libsigsegv... yes checking how to link with libsigsegv... -lsigsegv I get: checking for libsigsegv

Re: libsigsegv on LinuxFromScratch

2020-09-18 Thread Bruno Haible
Bruce Dubbs wrote in : > > checking for libsigsegv... yes > > checking how to link with libsigsegv... -lsigsegv > > I get: > > checking for libsigsegv... yes > checking how to li

Re: new snapshot available: grep-3.4-almost.26-5419

2020-09-18 Thread Bruce Dubbs
On 9/18/20 5:16 PM, Paul Eggert wrote: In on 9/18/20 2:00 PM, Bruce Dubbs wrote: ... if I run ./configure --prefix=/usr --bindir=/bin grep wants to link with /usr/lib/libsigsegv.so /usr/lib/libc.a instead of just -lsigsegv In this late

Re: [platform-testers] new snapshot available: grep-3.4-almost.19-ff30

2020-09-18 Thread Paul Eggert
On 9/17/20 2:07 PM, Jeffrey Walton wrote: One failure on Ubuntu 18.04 x86_64 under UBsan (-fsanitize=undefined -fno-sanitize-recover=all). FAIL: test-c-stack2.sh That's a Gnulib test failure caused by -fsanitize=undefined getting in the way of a test harness self-test. I installed the attach

Re: gc-pbkdf2-sha1 is deprecated

2020-09-18 Thread Bruno Haible
Hi Bruce, > Next question: what do I do about crypto/gc-pbkdf2-sha1? It is labeled > as "deprecated", but I need a function that produces precisely the same > result. It really doesn't matter to me that folks have figured out how > to jigger a file to produce an arbitrary sha1 sum. I only need

Re: grep-3.4-almost.19-ff30 on Solaris 10

2020-09-18 Thread Paul Eggert
On 9/18/20 2:01 AM, Bruno Haible wrote: The file descriptor 2 is unaffected by the file descriptor reshuffle. Only file descriptor 6 is affected, which is the one used by AC_MSG_CHECKING/AC_MSG_RESULT. No one is supposed to use this file descriptor in a 'trap' action. Ah, sorry, I misread it.

gc-pbkdf2-sha1 is deprecated

2020-09-18 Thread Bruce Korb
Hi Bruno, et al., Next question: what do I do about crypto/gc-pbkdf2-sha1? It is labeled as "deprecated", but I need a function that produces precisely the same result. It really doesn't matter to me that folks have figured out how to jigger a file to produce an arbitrary sha1 sum. I only need

Re: grep-3.4-almost.19-ff30 on Solaris 10

2020-09-18 Thread Bruno Haible
Hi Paul, > On 9/17/20 1:53 PM, Bruno Haible wrote: > > - { > > -$1 > > - } AS_MESSAGE_FD>/dev/null > > + exec GL_TMP_FD>&AS_MESSAGE_FD AS_MESSAGE_FD>/dev/null > > + $1 > > + exec AS_MESSAGE_FD>&GL_TMP_FD AS_MESSAGE_FD>&- I had a typo in here. Corrected: exec GL_TMP_FD>&AS_MESSAGE_FD A