diff options
-rwxr-xr-x | CMakeLists.txt | 8 | ||||
-rwxr-xr-x | auto_tests/friends_test.c | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c0fea1a1..644e8cc6 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -10,6 +10,14 @@ else() | |||
10 | option(USE_NACL "Use NaCl library instead of libsodium") | 10 | option(USE_NACL "Use NaCl library instead of libsodium") |
11 | endif() | 11 | endif() |
12 | 12 | ||
13 | #OS X specific | ||
14 | if(APPLE) | ||
15 | set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} /opt/local/lib) | ||
16 | set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} /opt/local/include) | ||
17 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/opt/local/include" ) | ||
18 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/opt/local/lib") | ||
19 | endif() | ||
20 | |||
13 | if(UNIX) | 21 | if(UNIX) |
14 | find_package(Curses REQUIRED) | 22 | find_package(Curses REQUIRED) |
15 | endif() | 23 | endif() |
diff --git a/auto_tests/friends_test.c b/auto_tests/friends_test.c index 6c7569be..0ba42b61 100755 --- a/auto_tests/friends_test.c +++ b/auto_tests/friends_test.c | |||
@@ -29,6 +29,10 @@ | |||
29 | #define WAIT_COUNT 30 | 29 | #define WAIT_COUNT 30 |
30 | #define WAIT_TIME 500 | 30 | #define WAIT_TIME 500 |
31 | 31 | ||
32 | #ifndef MAP_ANONYMOUS | ||
33 | #define MAP_ANONYMOUS MAP_ANON | ||
34 | #endif | ||
35 | |||
32 | /* first step, second step */ | 36 | /* first step, second step */ |
33 | #define FIRST_FLAG 0x1 | 37 | #define FIRST_FLAG 0x1 |
34 | #define SECOND_FLAG 0x2 | 38 | #define SECOND_FLAG 0x2 |