diff options
| author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-08-03 13:21:19 +0000 | 
|---|---|---|
| committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-08-03 13:21:19 +0000 | 
| commit | 3b06d69d61cd677394fa7adf1ffcfa13ab8bac70 (patch) | |
| tree | b071a0a3c396aa850a9024000a382165b0c00380 /include | |
| parent | b92eac2e9f6d686a9e2f748f8097aedbb373395c (diff) | |
| parent | 5bb3bea07b0ff38e4646ed6f835d9bdac6beced6 (diff) | |
| download | ouroboros-3b06d69d61cd677394fa7adf1ffcfa13ab8bac70.tar.gz ouroboros-3b06d69d61cd677394fa7adf1ffcfa13ab8bac70.zip  | |
Merged in sandervrijders/ouroboros/be-hurd (pull request #539)
build: Add check for robust mutexes
Diffstat (limited to 'include')
| -rw-r--r-- | include/ouroboros/config.h.in | 1 | ||||
| -rw-r--r-- | include/ouroboros/endian.h | 2 | 
2 files changed, 2 insertions, 1 deletions
diff --git a/include/ouroboros/config.h.in b/include/ouroboros/config.h.in index e8341ee2..4c255da5 100644 --- a/include/ouroboros/config.h.in +++ b/include/ouroboros/config.h.in @@ -36,6 +36,7 @@  #define IPCP_SHIM_ETH_LLC_EXEC "@IPCP_SHIM_ETH_LLC_TARGET@"  #define IPCP_NORMAL_EXEC       "@IPCP_NORMAL_TARGET@"  #define IPCP_LOCAL_EXEC        "@IPCP_LOCAL_TARGET@" +#cmakedefine HAVE_ROBUST_MUTEX  #define AP_MAX_FLOWS           2048  #define AP_RES_FDS             64  #define AP_MAX_FQUEUES         64 diff --git a/include/ouroboros/endian.h b/include/ouroboros/endian.h index 16200028..873aff73 100644 --- a/include/ouroboros/endian.h +++ b/include/ouroboros/endian.h @@ -24,7 +24,7 @@  #ifndef OUROBOROS_ENDIAN_H  #define OUROBOROS_ENDIAN_H -#if defined(__linux__) || defined(__CYGWIN__) +#if defined(__linux__) || defined(__CYGWIN__) || defined(__MACH__)  #ifndef _BSD_SOURCE  #define _BSD_SOURCE  | 
