We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819bcc4 commit 58aabf0Copy full SHA for 58aabf0
configure
@@ -488,29 +488,6 @@ code=
488
#error "Not modern GCC"
489
#endif
490
/*END*/
491
-var=HAVE_PWRITEV
492
-desc=pwritev() defined
493
-style=DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE
494
-code=
495
-#include <sys/uio.h>
496
-#include <sys/types.h>
497
-#include <sys/stat.h>
498
-#include <fcntl.h>
499
-
500
-int main(void)
501
-{
502
- struct iovec iov[2];
503
- int fd = open("/dev/null", O_WRONLY);
504
505
- iov[0].iov_base = "hello";
506
- iov[0].iov_len = 5;
507
- iov[1].iov_base = " world";
508
- iov[1].iov_len = 6;
509
- if (pwritev(fd, iov, 2, 0) == 11)
510
- return 0;
511
- return 1;
512
-}
513
-/*END*/
514
EOF
515
516
if check_command 'python3-mako' python3 -c 'import mako'; then
0 commit comments