chiark
/
gitweb
/
~mdw
/
adns
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
+ Bugfixes:
[adns]
/
src
/
config.h.in
diff --git
a/src/config.h.in
b/src/config.h.in
index 93a4ad8e93ede95b3c0a22e16260d25ecfd0559a..a22abe8a7206aeaea1e39079a5f3d1185f17d482 100644
(file)
--- 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. */
/* 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
/* Define if function attributes a la GCC 2.5 and higher are available. */
#undef HAVE_GNUC25_ATTRIB
@@
-18,6
+21,9
@@
/* Define if you have the poll function. */
#undef HAVE_POLL
/* Define if you have the poll function. */
#undef HAVE_POLL
+/* Define if you have the <sys/select.h> header file. */
+#undef HAVE_SYS_SELECT_H
+
/* Define if you have the nsl library (-lnsl). */
#undef HAVE_LIBNSL
/* Define if you have the nsl library (-lnsl). */
#undef HAVE_LIBNSL
@@
-26,6
+32,10
@@
/* Use the definitions: */
/* Use the definitions: */
+#ifndef HAVE_INLINE
+#define inline
+#endif
+
#ifdef HAVE_POLL
#include <sys/poll.h>
#else
#ifdef HAVE_POLL
#include <sys/poll.h>
#else
@@
-89,3
+99,7
@@
struct pollfd { int fd; short events; short revents; };
#ifdef HAVEUSE_RPCTYPES_H
#include <rpc/types.h>
#endif
#ifdef HAVEUSE_RPCTYPES_H
#include <rpc/types.h>
#endif
+
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif