chiark
/
gitweb
/
~mdw
/
adns
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
New poll(2) stuff etc. Does not work yet, but compiles.
[adns]
/
src
/
config.h.in
diff --git
a/src/config.h.in
b/src/config.h.in
index 74267bfb20a024071958cc3ae4a8121499b428cb..80590fb617267e9ddbeed822ec2edf036886d378 100644
(file)
--- a/
src/config.h.in
+++ b/
src/config.h.in
@@
-12,6
+12,9
@@
/* Define if printf-format argument lists a la GCC are available. */
#undef HAVE_GNUC25_PRINTFFORMAT
/* Define if printf-format argument lists a la GCC are available. */
#undef HAVE_GNUC25_PRINTFFORMAT
+/* 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 nsl library (-lnsl). */
#undef HAVE_LIBNSL
@@
-20,6
+23,15
@@
/* Use the definitions: */
/* Use the definitions: */
+#ifdef HAVE_POLL
+#include <sys/poll.h>
+#else
+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
/* GNU C attributes. */
#ifndef FUNCATTR
#ifdef HAVE_GNUC25_ATTRIB