ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/libeio.m4
(Generate patch)

Comparing libeio/libeio.m4 (file contents):
Revision 1.6 by root, Fri May 30 04:50:21 2008 UTC vs.
Revision 1.7 by root, Wed Oct 22 18:15:36 2008 UTC

88 return 0; 88 return 0;
89} 89}
90],ac_cv_sendfile=yes,ac_cv_sendfile=no)]) 90],ac_cv_sendfile=yes,ac_cv_sendfile=no)])
91test $ac_cv_sendfile = yes && AC_DEFINE(HAVE_SENDFILE, 1, sendfile(2) is available and supported) 91test $ac_cv_sendfile = yes && AC_DEFINE(HAVE_SENDFILE, 1, sendfile(2) is available and supported)
92 92
93AC_CACHE_CHECK(for sync_file_range, ac_cv_sync_file_range, [AC_LINK_IFELSE([
94#include <fcntl.h>
95int main(void)
96{
97 int fd = 0;
98 off64_t offset = 1;
99 off64_t nbytes = 1;
100 unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE|SYNC_FILE_RANGE_WAIT_AFTER;
101 ssize_t res;
102 res = sync_file_range (fd, offset, nbytes, flags);
103 return 0;
104}
105],ac_cv_sync_file_range=yes,ac_cv_sync_file_range=no)])
106test $ac_cv_sync_file_range = yes && AC_DEFINE(HAVE_SYNC_FILE_RANGE, 1, sync_file_range(2) is available)
107

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines