ecore: include mman.h also when Evil is found.

I don't really like this patch. I think it would be nicer to have mmap
been correctly detected when Evil or Exotic is there, but at this point
I don't feel at ease with configure.ac.
This commit is contained in:
Cedric Bail 2013-03-19 15:41:37 +01:00 committed by Cedric BAIL
parent 1d8f06511c
commit a831609e63
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
# include <langinfo.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#if defined(HAVE_SYS_MMAN_H) || defined(HAVE_EVIL)
# include <sys/mman.h>
#endif

View File

@ -13,7 +13,7 @@
# include <unistd.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#if defined(HAVE_SYS_MMAN_H) || defined(HAVE_EVIL)
# include <sys/mman.h>
#endif