diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-08-03 14:51:41 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-08-03 15:19:16 +0200 |
commit | 5bb3bea07b0ff38e4646ed6f835d9bdac6beced6 (patch) | |
tree | b071a0a3c396aa850a9024000a382165b0c00380 /src/ipcpd | |
parent | b92eac2e9f6d686a9e2f748f8097aedbb373395c (diff) | |
download | ouroboros-5bb3bea07b0ff38e4646ed6f835d9bdac6beced6.tar.gz ouroboros-5bb3bea07b0ff38e4646ed6f835d9bdac6beced6.zip |
build: Add check for robust mutexes
This adds a check for robust mutexes. The constant HAVE_ROBUST_MUTEX
is set accordingly in config.h. It also adds some other fixes to make
the prototype compile on the Hurd.
Diffstat (limited to 'src/ipcpd')
-rw-r--r-- | src/ipcpd/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/CMakeLists.txt b/src/ipcpd/CMakeLists.txt index 00baa762..e0b375b6 100644 --- a/src/ipcpd/CMakeLists.txt +++ b/src/ipcpd/CMakeLists.txt @@ -8,7 +8,7 @@ set(IPCP_SOURCES add_subdirectory(local) add_subdirectory(normal) add_subdirectory(shim-udp) -if (NOT APPLE) +if (NOT APPLE AND NOT CMAKE_SYSTEM_NAME STREQUAL GNU) add_subdirectory(shim-eth-llc) endif () add_subdirectory(tests) |