diff loader/ext.c @ 33412:2a2e9b6551d8

configure: Convert HAVE_SYS_MMAN_H into a 0/1 definition. FFmpeg/Libav uses it as a 0/1 definition, so adapt MPlayer to do the same.
author diego
date Tue, 24 May 2011 19:51:38 +0000
parents 8fa2f43cb760
children 389d43c448b3
line wrap: on
line diff
--- a/loader/ext.c	Tue May 24 19:47:07 2011 +0000
+++ b/loader/ext.c	Tue May 24 19:51:38 2011 +0000
@@ -15,7 +15,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
-#ifdef HAVE_SYS_MMAN_H
+#if HAVE_SYS_MMAN_H
 #include <sys/mman.h>
 #else
 #include "osdep/mmap.h"