Re: current gnulib regex breaks in gawk

2021-04-21 Thread arnold
I have pushed fixes for this. Let me know if there are still issues. Thanks, Arnold arn...@skeeve.com wrote: > "Dmitry V. Levin" wrote: > > > On Sat, Apr 17, 2021 at 01:43:58PM -0600, arn...@skeeve.com wrote: > > > "Dmitry V. Levin" wrote: > > > > > > > I've just tried to build the latest co

Re: current gnulib regex breaks in gawk

2021-04-17 Thread arnold
"Dmitry V. Levin" wrote: > On Sat, Apr 17, 2021 at 01:43:58PM -0600, arn...@skeeve.com wrote: > > "Dmitry V. Levin" wrote: > > > > > I've just tried to build the latest commit gawk-5.1.0-260-gde598391 from > > > gawk-5.1-stable branch. Unfortunately, the result executable uses a > > > private

Re: current gnulib regex breaks in gawk

2021-04-17 Thread Dmitry V. Levin
On Sat, Apr 17, 2021 at 01:43:58PM -0600, arn...@skeeve.com wrote: > "Dmitry V. Levin" wrote: > > > I've just tried to build the latest commit gawk-5.1.0-260-gde598391 from > > gawk-5.1-stable branch. Unfortunately, the result executable uses a > > private glibc interface: > > $ nm gawk |grep GL

Re: current gnulib regex breaks in gawk

2021-04-17 Thread arnold
"Dmitry V. Levin" wrote: > I've just tried to build the latest commit gawk-5.1.0-260-gde598391 from > gawk-5.1-stable branch. Unfortunately, the result executable uses a > private glibc interface: > $ nm gawk |grep GLIBC_PRIVATE > U __libc_dynarray_resize@GLIBC_PRIVATE > This ma

Re: current gnulib regex breaks in gawk

2021-04-17 Thread arnold
Thanks for the report. What causes the interface to be marked as GLIBC_PRIVATE? I don't have the issue you report on either Ubuntu 18.04 or 20.04, which are the main systems I develop on. I will try to look into this some. > I wish gawk sources used some gnulib module import automation, e.g. >

Re: current gnulib regex breaks in gawk

2021-04-16 Thread Dmitry V. Levin
Hi Arnold, On Sun, Feb 07, 2021 at 11:36:29PM -0700, arn...@skeeve.com wrote: > arn...@skeeve.com wrote: > > > I still have to have the following change, otherwise I get a linkage > > error on the gl_dyanarray_* routines. :-( > > > > So, at least for the nonce, my copy and Gnulib's will be out of

Re: current gnulib regex breaks in gawk

2021-02-08 Thread arnold
arn...@skeeve.com wrote: > I still have to have the following change, otherwise I get a linkage > error on the gl_dyanarray_* routines. :-( > > So, at least for the nonce, my copy and Gnulib's will be out of sync. > Oh well. So actually, I've managed to work around this issue too. So the files ar

Re: current gnulib regex breaks in gawk

2021-02-08 Thread arnold
Hi Bruno. > 1) It chokes on a missing definition of macro _GL_ATTRIBUTE_FALLTHROUGH. > > Can you add this piece of text to a common .h file? > > #if 201710L < __STDC_VERSION__ > # define _GL_ATTRIBUTE_FALLTHROUGH [[__fallthrough__]] > #elif _GL_HAS_ATTRIBUTE (fallthrough) > # define _GL_ATTRIBUTE_

Re: current gnulib regex breaks in gawk

2021-02-07 Thread Bruno Haible
Hi Arnold, The attachment you sent is best viewed with 'less -R'. > See typescript below. 1) It chokes on a missing definition of macro _GL_ATTRIBUTE_FALLTHROUGH. Can you add this piece of text to a common .h file? #if 201710L < __STDC_VERSION__ # define _GL_ATTRIBUTE_FALLTHROUGH [[__fallthrou

Re: current gnulib regex breaks in gawk

2021-02-07 Thread arnold
binlydUstJOzd.bin Description: Binary data

Re: current gnulib regex breaks in gawk

2021-02-07 Thread Bruno Haible
Hi Arnold, > I happened to notice that regex has been updated with new, er, stuff. > > Dropping the code into gawk, including copying over attribute.h, > dynarray.h and malloc/*, doesn't work. Compilation chokes. Saying "Compilation chokes" is not constructive. You cannot expect that Paul or I w

current gnulib regex breaks in gawk

2021-02-07 Thread arnold
Hi. I happened to notice that regex has been updated with new, er, stuff. Dropping the code into gawk, including copying over attribute.h, dynarray.h and malloc/*, doesn't work. Compilation chokes. I have not yet investigated what the changes are, but I have to wonder if the churn is really need