X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=adns.git;a=blobdiff_plain;f=src%2Fconfig.h.in;h=c583fc0fecf03a3159418cb1f09d29c0afaa2613;hp=a665e34a39b6daa63b129a300b5fde949bac4c5b;hb=2bd4b9f4167fa254b424385ee430d1402ef087b7;hpb=11b3519314b471bb042bf3a69bbbb3adaa7aa19d diff --git a/src/config.h.in b/src/config.h.in index a665e34..c583fc0 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -1,5 +1,8 @@ /* src/config.h.in. Generated automatically from configure.in by autoheader. */ +/* Define if inline functions a la GCC are available. */ +#undef HAVE_INLINE + /* Define if function attributes a la GCC 2.5 and higher are available. */ #undef HAVE_GNUC25_ATTRIB @@ -12,8 +15,34 @@ /* Define if printf-format argument lists a la GCC are available. */ #undef HAVE_GNUC25_PRINTFFORMAT +/* Define if we want to include rpc/types.h. Crap BSDs put INADDR_LOOPBACK there. */ +#undef HAVEUSE_RPCTYPES_H + +/* Define if you have the poll function. */ +#undef HAVE_POLL + +/* Define if you have the nsl library (-lnsl). */ +#undef HAVE_LIBNSL + +/* Define if you have the socket library (-lsocket). */ +#undef HAVE_LIBSOCKET + /* Use the definitions: */ +#ifndef HAVE_INLINE +#define inline +#endif + +#ifdef HAVE_POLL +#include +#else +/* kludge it up */ +struct pollfd { int fd; short events; short revents; }; +#define POLLIN 1 +#define POLLPRI 2 +#define POLLOUT 4 +#endif + /* GNU C attributes. */ #ifndef FUNCATTR #ifdef HAVE_GNUC25_ATTRIB @@ -63,3 +92,7 @@ #ifndef CONSTANT #define CONSTANT FUNCATTR((ATTRCONST)) #endif + +#ifdef HAVEUSE_RPCTYPES_H +#include +#endif