1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3-waf: fix configure check for HAVE_LINUX_READAHEAD.

Guenther
This commit is contained in:
Günther Deschner 2011-10-11 15:20:42 +02:00
parent 3522f9dc4b
commit d6cb58e18d

View File

@ -348,13 +348,10 @@ return acl_get_perm_np(permset_d, perm);
msg="Checking whether the Linux 'fallocate64' function is available", msg="Checking whether the Linux 'fallocate64' function is available",
headers='unistd.h sys/types.h fcntl.h linux/falloc.h') headers='unistd.h sys/types.h fcntl.h linux/falloc.h')
conf.CHECK_CODE(''' conf.CHECK_CODE('''
#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif
#include <fcntl.h>
ssize_t err = readahead(0,0,0x80000);''', ssize_t err = readahead(0,0,0x80000);''',
'HAVE_LINUX_READAHEAD', 'HAVE_LINUX_READAHEAD',
msg="Checking whether Linux readahead is available") msg="Checking whether Linux readahead is available",
headers='unistd.h fcntl.h')
conf.CHECK_DECLS('readahead', headers='fcntl.h', always=True) conf.CHECK_DECLS('readahead', headers='fcntl.h', always=True)
conf.CHECK_CODE(''' conf.CHECK_CODE('''