ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/libeio.m4
Revision: 1.5
Committed: Mon May 12 00:31:43 2008 UTC (16 years ago) by root
Branch: MAIN
CVS Tags: rel-3_03, rel-3_02
Changes since 1.4: +1 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 AC_SEARCH_LIBS(
2 pthread_create,
3 [pthread pthreads pthreadVC2],
4 ,
5 [AC_MSG_ERROR(pthread functions not found)]
6 )
7
8 AC_CACHE_CHECK(for futimes, ac_cv_futimes, [AC_LINK_IFELSE([[
9 #include <sys/types.h>
10 #include <sys/time.h>
11 #include <utime.h>
12 struct timeval tv[2];
13 int res;
14 int fd;
15 int main(void)
16 {
17 res = futimes (fd, tv);
18 return 0;
19 }
20 ]],ac_cv_futimes=yes,ac_cv_futimes=no)])
21 test $ac_cv_futimes = yes && AC_DEFINE(HAVE_FUTIMES, 1, futimes(2) is available)
22
23 AC_CACHE_CHECK(for readahead, ac_cv_readahead, [AC_LINK_IFELSE([
24 #include <fcntl.h>
25 int main(void)
26 {
27 int fd = 0;
28 size_t count = 2;
29 ssize_t res;
30 res = readahead (fd, 0, count);
31 return 0;
32 }
33 ],ac_cv_readahead=yes,ac_cv_readahead=no)])
34 test $ac_cv_readahead = yes && AC_DEFINE(HAVE_READAHEAD, 1, readahead(2) is available (linux))
35
36 AC_CACHE_CHECK(for fdatasync, ac_cv_fdatasync, [AC_LINK_IFELSE([
37 #include <unistd.h>
38 int main(void)
39 {
40 int fd = 0;
41 fdatasync (fd);
42 return 0;
43 }
44 ],ac_cv_fdatasync=yes,ac_cv_fdatasync=no)])
45 test $ac_cv_fdatasync = yes && AC_DEFINE(HAVE_FDATASYNC, 1, fdatasync(2) is available)
46
47 AC_CACHE_CHECK(for pread and pwrite, ac_cv_preadwrite, [AC_LINK_IFELSE([
48 #include <unistd.h>
49 int main(void)
50 {
51 int fd = 0;
52 size_t count = 1;
53 char buf;
54 off_t offset = 1;
55 ssize_t res;
56 res = pread (fd, &buf, count, offset);
57 res = pwrite (fd, &buf, count, offset);
58 return 0;
59 }
60 ],ac_cv_preadwrite=yes,ac_cv_preadwrite=no)])
61 test $ac_cv_preadwrite = yes && AC_DEFINE(HAVE_PREADWRITE, 1, pread(2) and pwrite(2) are available)
62
63 AC_CACHE_CHECK(for readdir_r, ac_cv_readdir_r, [AC_LINK_IFELSE([
64 #include <dirent.h>
65 int main(void)
66 {
67 DIR *dir = 0;
68 struct dirent ent, *eres;
69 int res = readdir_r (dir, &ent, &eres);
70 return 0;
71 }
72 ],ac_cv_readdir_r=yes,ac_cv_readdir_r=no)])
73 test $ac_cv_readdir_r = yes && AC_DEFINE(HAVE_READDIR_R, 1, readdir_r is available)
74
75 AC_CACHE_CHECK(for sendfile, ac_cv_sendfile, [AC_LINK_IFELSE([
76 # include <sys/types.h>
77 #if __linux
78 # include <sys/sendfile.h>
79 #elif __freebsd
80 # include <sys/socket.h>
81 # include <sys/uio.h>
82 #elif __hpux
83 # include <sys/socket.h>
84 #else
85 # error unsupported architecture
86 #endif
87 int main(void)
88 {
89 int fd = 0;
90 off_t offset = 1;
91 size_t count = 2;
92 ssize_t res;
93 #if __linux
94 res = sendfile (fd, fd, offset, count);
95 #elif __freebsd
96 res = sendfile (fd, fd, offset, count, 0, &offset, 0);
97 #elif __hpux
98 res = sendfile (fd, fd, offset, count, 0, 0);
99 #endif
100 return 0;
101 }
102 ],ac_cv_sendfile=yes,ac_cv_sendfile=no)])
103 test $ac_cv_sendfile = yes && AC_DEFINE(HAVE_SENDFILE, 1, sendfile(2) is available and supported)
104