[bug#71534] [PATCH] aclocal: support ACLOCAL_PATH correctly on OS/2

2024-06-16 Thread KO Myung-Hun
Karl Berry wrote: > - foreach my $dir (reverse split /:/, $ENV{"ACLOCAL_PATH"}) > + my $sep = $^O eq 'os2' ? ';' : ':'; > + foreach my $dir (reverse split /$sep/, $ENV{"ACLOCAL_PATH"}) > > Thanks for the report. I added a check for Windows and committed it. > --best, karl. > Th

[bug#71425] test: Accommodate C23 compilers.

2024-06-16 Thread Karl Berry
Hi Collin, In the yacc test I see warnings like this: main.c:4:10: error: implicit declaration of function 'yyparse' [-Wimplicit-function-declaration] 4 | return yyparse (); | ^~~ and some for yylex which is declared, but with an empty parameter list

[bug#71534] [PATCH] aclocal: support ACLOCAL_PATH correctly on OS/2

2024-06-16 Thread Karl Berry
- foreach my $dir (reverse split /:/, $ENV{"ACLOCAL_PATH"}) + my $sep = $^O eq 'os2' ? ';' : ':'; + foreach my $dir (reverse split /$sep/, $ENV{"ACLOCAL_PATH"}) Thanks for the report. I added a check for Windows and committed it. --best, karl. --