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 [[__fallthrough__]]
#elif _GL_HAS_ATTRIBUTE (fallthrough)
# define _GL_ATTRIBUTE_FALLTHROUGH __attribute__ ((__fallthrough__))
#else
# define _GL_ATTRIBUTE_FALLTHROUGH ((void) 0)
#endif

(For adding to config.h, as you know, you can use AH_VERBATIM.)

2) It chokes on a missing definition of macro __attribute_maybe_unused__.

It seems you are not using gnulib's cdefs.h? You need both lib/libc-config.h
and lib/cdefs.h.

Bruno


Reply via email to