summaryrefslogtreecommitdiff
path: root/m4/mmap-anon.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2005-03-03 14:07:04 +0000
committerBruno Haible <bruno@clisp.org>2005-03-03 14:07:04 +0000
commitc49424557579cb46914ba4f080720d8b94abab39 (patch)
treed82b363ac80c448e58b8ff89c5c08b82be6dab7b /m4/mmap-anon.m4
parentcd3bee968885a85671cad267e142aad74076b5e2 (diff)
downloadgnulib-c49424557579cb46914ba4f080720d8b94abab39.tar.gz
New module 'pagealign_alloc'.
Diffstat (limited to 'm4/mmap-anon.m4')
-rw-r--r--m4/mmap-anon.m454
1 files changed, 54 insertions, 0 deletions
diff --git a/m4/mmap-anon.m4 b/m4/mmap-anon.m4
new file mode 100644
index 0000000000..6093567f78
--- /dev/null
+++ b/m4/mmap-anon.m4
@@ -0,0 +1,54 @@
+# mmap-anon.m4 serial 1
+dnl Copyright (C) 2005 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+AC_DEFUN([gl_FUNC_MMAP],
+[
+ dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+ AC_REQUIRE([AC_PROG_CPP])
+ AC_REQUIRE([AC_PROG_EGREP])
+
+ dnl Persuade glibc <sys/mman.h> to define MAP_ANONYMOUS.
+ AC_REQUIRE([AC_GNU_SOURCE])
+
+ # Check for mmap()
+ AC_FUNC_MMAP
+
+ # Try to allow MAP_ANONYMOUS.
+ gl_have_mmap_anonymous=no
+ if test $ac_cv_func_mmap_fixed_mapped = yes; then
+ AC_MSG_CHECKING([for MAP_ANONYMOUS])
+ AC_EGREP_CPP([I cant identify this map.], [
+#include <sys/mman.h>
+#ifdef MAP_ANONYMOUS
+ I cant identify this map.
+#endif
+],
+ [gl_have_mmap_anonymous=yes])
+ if test $gl_have_mmap_anonymous = no; then
+ AC_EGREP_HEADER([MAP_ANON], [
+#include <sys/mman.h>
+#ifdef MAP_ANON
+ I cant identify this map.
+#endif
+],
+ [AC_DEFINE(MAP_ANONYMOUS, MAP_ANON,
+ [Define to a substitute value for mmap()'s MAP_ANONYMOUS flag.])
+ gl_have_mmap_anonymous=yes])
+ fi
+ AC_MSG_RESULT($gl_have_mmap_anonymous)
+ if test $gl_have_mmap_anonymous = yes; then
+ AC_DEFINE(HAVE_MAP_ANONYMOUS, 1,
+ [Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including
+ config.h and <sys/mman.h>.])
+ fi
+
+ AH_VERBATIM([MAP_FILE],
+[/* Define MAP_FILE when it isn't otherwise. */
+#ifndef MAP_FILE
+# define MAP_FILE 0
+#endif])
+ fi
+])