ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/libeio.m4
Revision: 1.3
Committed: Sun May 11 01:03:33 2008 UTC (16 years ago) by root
Branch: MAIN
Changes since 1.2: +0 -1 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 off64_t offset = 1;
29 size_t count = 2;
30 ssize_t res;
31 res = readahead (fd, offset, count);
32 return 0;
33 }
34 ],ac_cv_readahead=yes,ac_cv_readahead=no)])
35 test $ac_cv_readahead = yes && AC_DEFINE(HAVE_READAHEAD, 1, readahead(2) is available (linux))
36 test $ac_cv_readahead = yes && AC_DEFINE(_GNU_SOURCE, 1, _GNU_SOURCE required for readahead (linux))
37
38 AC_CACHE_CHECK(for fdatasync, ac_cv_fdatasync, [AC_LINK_IFELSE([
39 #include <unistd.h>
40 int main(void)
41 {
42 int fd = 0;
43 fdatasync (fd);
44 return 0;
45 }
46 ],ac_cv_fdatasync=yes,ac_cv_fdatasync=no)])
47 test $ac_cv_fdatasync = yes && AC_DEFINE(HAVE_FDATASYNC, 1, fdatasync(2) is available)
48
49 AC_CACHE_CHECK(for pread and pwrite, ac_cv_preadwrite, [AC_LINK_IFELSE([
50 #include <unistd.h>
51 int main(void)
52 {
53 int fd = 0;
54 size_t count = 1;
55 char buf;
56 off_t offset = 1;
57 ssize_t res;
58 res = pread (fd, &buf, count, offset);
59 res = pwrite (fd, &buf, count, offset);
60 return 0;
61 }
62 ],ac_cv_preadwrite=yes,ac_cv_preadwrite=no)])
63 test $ac_cv_preadwrite = yes && AC_DEFINE(HAVE_PREADWRITE, 1, pread(2) and pwrite(2) are available)
64
65 AC_CACHE_CHECK(for readdir_r, ac_cv_readdir_r, [AC_LINK_IFELSE([
66 #include <dirent.h>
67 int main(void)
68 {
69 DIR *dir = 0;
70 struct dirent ent, *eres;
71 int res = readdir_r (dir, &ent, &eres);
72 return 0;
73 }
74 ],ac_cv_readdir_r=yes,ac_cv_readdir_r=no)])
75 test $ac_cv_readdir_r = yes && AC_DEFINE(HAVE_READDIR_R, 1, readdir_r is available)
76
77 AC_CACHE_CHECK(for sendfile, ac_cv_sendfile, [AC_LINK_IFELSE([
78 # include <sys/types.h>
79 #if __linux
80 # include <sys/sendfile.h>
81 #elif __freebsd
82 # include <sys/socket.h>
83 # include <sys/uio.h>
84 #elif __hpux
85 # include <sys/socket.h>
86 #else
87 # error unsupported architecture
88 #endif
89 int main(void)
90 {
91 int fd = 0;
92 off_t offset = 1;
93 size_t count = 2;
94 ssize_t res;
95 #if __linux
96 res = sendfile (fd, fd, offset, count);
97 #elif __freebsd
98 res = sendfile (fd, fd, offset, count, 0, &offset, 0);
99 #elif __hpux
100 res = sendfile (fd, fd, offset, count, 0, 0);
101 #endif
102 return 0;
103 }
104 ],ac_cv_sendfile=yes,ac_cv_sendfile=no)])
105 test $ac_cv_sendfile = yes && AC_DEFINE(HAVE_SENDFILE, 1, sendfile(2) is available and supported)
106