Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enable mac compilation with MMAP.
authornavarrop <navarrop@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 7 May 2010 12:56:29 +0000 (12:56 +0000)
committernavarrop <navarrop@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 7 May 2010 12:56:29 +0000 (12:56 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7722 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/xbt/mmalloc/mmap-sup.c

index 733b325..f32e0aa 100644 (file)
@@ -9,6 +9,10 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+#ifndef MAP_ANONYMOUS
+       #define MAP_ANONYMOUS MAP_ANON
+#endif
+
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>    /* Prototypes for lseek */
 #endif