X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/63696a737c9c28f203e1e4f8c73f8a765486543f..7c106b1e1e4e2bef3920787160e1e31e352d14cc:/autogen/config.in diff --git a/autogen/config.in b/autogen/config.in index 57ff5f45e0..f2ea751e2f 100644 --- a/autogen/config.in +++ b/autogen/config.in @@ -582,6 +582,9 @@ along with GNU Emacs. If not, see . */ /* Define to 1 if you have the `readlink' function. */ #undef HAVE_READLINK +/* Define to 1 if you have the `readlinkat' function. */ +#undef HAVE_READLINKAT + /* Define to 1 if you have the `recvfrom' function. */ #undef HAVE_RECVFROM @@ -1209,6 +1212,9 @@ along with GNU Emacs. If not, see . */ /* type to use in place of socklen_t if not defined */ #undef socklen_t +/* Define as a signed type of the same size as size_t. */ +#undef ssize_t + /* Define to any substitute for sys_siglist. */ #undef sys_siglist @@ -1362,6 +1368,20 @@ typedef unsigned size_t; #define EXTERNALLY_VISIBLE #endif +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) +# define ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec)) +#else +# define ATTRIBUTE_FORMAT(spec) /* empty */ +#endif + +#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4) +# define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \ + ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument)) +#else +# define ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \ + ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument)) +#endif + /* Some versions of GNU/Linux define noinline in their headers. */ #ifdef noinline #undef noinline