Skip to content

Instantly share code, notes, and snippets.

@gromgit
Created August 5, 2016 04:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gromgit/2a9f210a2975631bc34c0a2557c9cb84 to your computer and use it in GitHub Desktop.
Save gromgit/2a9f210a2975631bc34c0a2557c9cb84 to your computer and use it in GitHub Desktop.
Kore compatibility patch for macOS <= Mavericks
*** kore-2.0.0/src/pool.c.orig Fri Aug 5 10:21:29 2016
--- kore-2.0.0/src/pool.c Fri Aug 5 11:04:37 2016
***************
*** 21,26 ****
--- 21,35 ----
#include "kore.h"
+ // FIX: macOS <= Mavericks doesn't define MAP_ANONYMOUS
+ #ifndef MAP_ANONYMOUS
+ # ifdef MAP_ANON
+ # define MAP_ANONYMOUS MAP_ANON
+ # else
+ # define MAP_ANONYMOUS 0
+ # endif
+ #endif
+
#define POOL_ELEMENT_BUSY 0
#define POOL_ELEMENT_FREE 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment