summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-11-11 16:09:09 -0300
committerJames Almer <jamrial@gmail.com>2017-11-11 16:09:09 -0300
commit869401cefc22e221edbf135bacaa1f21014fd001 (patch)
tree731ddba643d8a14dcd515e326b39caac51c18aa3
parent084e7fbe49fb0935b733726c2b0f7e6ce9553874 (diff)
parent29ccc641b17afad058a5c24071ea827865a8b3a9 (diff)
Merge commit '29ccc641b17afad058a5c24071ea827865a8b3a9'
* commit '29ccc641b17afad058a5c24071ea827865a8b3a9': build: Drop check for sys/mman.h in favor of mmap() check Merged-by: James Almer <jamrial@gmail.com>
-rwxr-xr-xconfigure2
-rw-r--r--libswscale/utils.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/configure b/configure
index 7fe9d80ecc..175559bd55 100755
--- a/configure
+++ b/configure
@@ -1937,7 +1937,6 @@ HEADERS_LIST="
poll_h
soundcard_h
stdatomic_h
- sys_mman_h
sys_param_h
sys_resource_h
sys_select_h
@@ -5772,7 +5771,6 @@ check_header mach/mach_time.h
check_header malloc.h
check_header net/udplite.h
check_header poll.h
-check_header sys/mman.h
check_header sys/param.h
check_header sys/resource.h
check_header sys/select.h
diff --git a/libswscale/utils.c b/libswscale/utils.c
index dcab707de6..4df09306d3 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -27,7 +27,7 @@
#include <math.h>
#include <stdio.h>
#include <string.h>
-#if HAVE_SYS_MMAN_H
+#if HAVE_MMAP
#include <sys/mman.h>
#if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
#define MAP_ANONYMOUS MAP_ANON