Re: Bash 5.1: accept loadable build fix

2021-02-02 Thread Chet Ramey
On 2/1/21 6:16 PM, Marc Aurèle La France wrote: typemax.h states it should be included after config.h, limits.h, stdint.h, and inttypes.h. But, on my system (with glibc 2.32), accept.c ends up including after typemax.h, via the sequence ... accept.c -> loadables.h -> builtins.h -> general.h ->

Bash 5.1: accept loadable build fix

2021-02-01 Thread Marc Aurèle La France
typemax.h states it should be included after config.h, limits.h, stdint.h, and inttypes.h. But, on my system (with glibc 2.32), accept.c ends up including after typemax.h, via the sequence ... accept.c -> loadables.h -> builtins.h -> general.h -> ... resulting in a compile failure. Below is