diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in index 28ace46a71b9b..aa1ba81a248bd 100644 --- a/config.h.in +++ b/config.h.in @@ -16,7 +16,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: config.h.in,v 1.106.40.11 2010/01/15 19:38:52 each Exp $ */ +/* $Id: config.h.in,v 1.106.40.24 2010-12-21 04:33:58 marka Exp $ */ /*! \file */ @@ -160,9 +160,21 @@ int sigwait(const unsigned int *set, int *sig); /* Solaris hack to get select_large_fdset. */ #undef FD_SETSIZE +/* Define to nothing if C supports flexible array members, and to 1 if it does + not. That way, with a declaration like `struct s { int n; double + d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99 + compilers. When computing the size of such an object, don't use 'sizeof + (struct s)' as it overestimates the size. Use 'offsetof (struct s, d)' + instead. Don't use 'offsetof (struct s, d[0])', as this doesn't work with + MSVC and with C++ compilers. */ +#undef FLEXIBLE_ARRAY_MEMBER + /* Define to 1 if you have the `chroot' function. */ #undef HAVE_CHROOT +/* Define to 1 if you have the <devpoll.h> header file. */ +#undef HAVE_DEVPOLL_H + /* Define to 1 if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H @@ -184,6 +196,15 @@ int sigwait(const unsigned int *set, int *sig); /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the <kerberosv5/krb5.h> header file. */ +#undef HAVE_KERBEROSV5_KRB5_H + +/* Define to 1 if you have the <krb5.h> header file. */ +#undef HAVE_KRB5_H + +/* Define to 1 if you have the <krb5/krb5.h> header file. */ +#undef HAVE_KRB5_KRB5_H + /* Define to 1 if you have the `c' library (-lc). */ #undef HAVE_LIBC |