View | Details | Raw Unified | Return to bug 1386 | Differences between
and this patch

Collapse All | Expand All

(-)configure.ac (+6 lines)
Lines 1376-1381 AC_CHECK_DECLS(O_NONBLOCK, , , Link Here
1376
#endif
1376
#endif
1377
	])
1377
	])
1378
1378
1379
AC_CHECK_DECLS(readv, , , [
1380
#include <sys/types.h>
1381
#include <sys/uio.h>
1382
#include <unistd.h>
1383
	])
1384
1379
AC_CHECK_DECLS(writev, , , [
1385
AC_CHECK_DECLS(writev, , , [
1380
#include <sys/types.h>
1386
#include <sys/types.h>
1381
#include <sys/uio.h>
1387
#include <sys/uio.h>
(-)openbsd-compat/openbsd-compat.h (+6 lines)
Lines 131-136 int getgrouplist(const char *, gid_t, gi Link Here
131
int BSDgetopt(int argc, char * const *argv, const char *opts);
131
int BSDgetopt(int argc, char * const *argv, const char *opts);
132
#endif
132
#endif
133
133
134
#if defined(HAVE_DECL_READV) && HAVE_DECL_READV == 0
135
# include <sys/types.h>
136
# include <sys/uio.h>
137
int readv(int, struct iovec *, int);
138
#endif
139
134
#if defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0
140
#if defined(HAVE_DECL_WRITEV) && HAVE_DECL_WRITEV == 0
135
# include <sys/types.h>
141
# include <sys/types.h>
136
# include <sys/uio.h>
142
# include <sys/uio.h>

Return to bug 1386