diff options
author | Michael Adam <obnox@samba.org> | 2008-02-21 00:11:03 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-21 10:27:56 +0100 |
commit | 48302a28a90190572c5e9a6a54a539d883e89f6b (patch) | |
tree | 2e55aa4a04d392826c506ca0a9c0ae1303724b41 /source3/configure.in | |
parent | e823c9f2376b718a0041da7ae395722c925b03f1 (diff) | |
download | samba-48302a28a90190572c5e9a6a54a539d883e89f6b.tar.gz samba-48302a28a90190572c5e9a6a54a539d883e89f6b.tar.xz samba-48302a28a90190572c5e9a6a54a539d883e89f6b.zip |
Remove mmap check from configure.in
It is available in libreplace.
Michael
(This used to be commit 310c121faf5effeca9ab0df3591c486dd4982749)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/configure.in b/source3/configure.in index fe9d716804d..4cc98363d5e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2756,13 +2756,6 @@ if test x"$samba_cv_DARWIN_INITGROUPS" = x"yes" ; then [Whether to use the Darwin-specific initgroups system call]) fi -AC_CACHE_CHECK([for working mmap],samba_cv_HAVE_MMAP,[ -AC_TRY_RUN([#include "${srcdir-.}/tests/shared_mmap.c"], - samba_cv_HAVE_MMAP=yes,samba_cv_HAVE_MMAP=no,samba_cv_HAVE_MMAP=cross)]) -if test x"$samba_cv_HAVE_MMAP" = x"yes"; then - AC_DEFINE(HAVE_MMAP,1,[Whether mmap works]) -fi - AC_CACHE_CHECK([for fcntl locking],samba_cv_HAVE_FCNTL_LOCK,[ AC_TRY_RUN([#include "${srcdir-.}/tests/fcntl_lock.c"], samba_cv_HAVE_FCNTL_LOCK=yes,samba_cv_HAVE_FCNTL_LOCK=no,samba_cv_HAVE_FCNTL_LOCK=cross)]) |