Compile krb5-appl 1.0.3 on hpux

asprintf.c: In function 'vasprintf':
asprintf.c:58: error: 'SIZE_MAX' undeclared (first use in this function)
asprintf.c:58: error: (Each undeclared identifier is reported only once
asprintf.c:58: error: for each function it appears in.)

Someone know how to fix?
Thanks

An attempt:

grep -w SIZE_MAX /usr/include/*.h /usr/include/*/*.h
/usr/include/stdint.h:#  define SIZE_MAX        ULONG_MAX

Here (on my system): found in stdint.h
/usr/include is the <standard include path>
Then insert at the beginning of the C source

#include <stdint.h>

Don't work.
:frowning: