Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2005-12-28 06:25:10 +0300
committerJonathan Pryor <jpryor@novell.com>2005-12-28 06:25:10 +0300
commit7d03031260b4f422995ceb69b3e38e8e4de826d6 (patch)
tree32e8ded6f92e60c064b2b28fbecc288c26f336f6 /configure.in
parent1a529e079b9742ec35351c6a7451999ff9d0c90e (diff)
* configure.in: Add check for <sys/mman.h>. Fixes #77091.
Thanks to Ben Gamari for the patch. * support/map.c: Include <sys/mman.h>. Fixes #77091. Thanks to Ben Gamari. svn path=/trunk/mono/; revision=54894
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index b203af9f293..4bc5392bb09 100644
--- a/configure.in
+++ b/configure.in
@@ -1202,6 +1202,7 @@ if test x$platform_win32 = xno; then
AC_CHECK_HEADERS(sys/statvfs.h)
AC_CHECK_HEADERS(sys/vfstab.h)
AC_CHECK_HEADERS(sys/xattr.h)
+ AC_CHECK_HEADERS(sys/mman.h)
AC_CHECK_FUNCS(getdomainname)
AC_CHECK_FUNCS(setdomainname)
AC_CHECK_FUNCS(fgetgrent)