apple: Redefine some additional clashing Mach types

While they usually are not included in a normal strongSwan build, the XPC
header indirectly defines these Mach types. To build charon-xpc, which uses
both XPC and strongSwan includes, we have to redefine these types.
This commit is contained in:
Martin Willi
2014-12-16 17:22:28 +01:00
parent 6fa203b8d4
commit 04337fed02
4 changed files with 13 additions and 3 deletions
+2
View File
@@ -22,6 +22,8 @@
#ifndef TASK_H_
#define TASK_H_
#include <utils/utils.h>
typedef enum task_type_t task_type_t;
typedef struct task_t task_t;
+3 -3
View File
@@ -24,6 +24,9 @@
#ifndef HOST_H_
#define HOST_H_
#include <utils/utils.h>
#include <utils/chunk.h>
typedef enum host_diff_t host_diff_t;
typedef struct host_t host_t;
@@ -31,9 +34,6 @@ typedef struct host_t host_t;
#include <stdio.h>
#include <sys/types.h>
#include <utils/utils.h>
#include <utils/chunk.h>
/**
* Representates a Host
*
+2
View File
@@ -23,6 +23,8 @@
#ifndef PROCESSOR_H_
#define PROCESSOR_H_
#include <utils/utils.h>
typedef struct processor_t processor_t;
#include <stdlib.h>
+6
View File
@@ -34,6 +34,12 @@
/* Mach uses a semaphore_create() call, use a different name for ours */
#define semaphore_create(x) strongswan_semaphore_create(x)
/* Since OS X 10.10 XPC includes some additional conflicting Mach types */
#define host_t strongswan_host_t
#define processor_t strongswan_processor_t
#define task_t strongswan_task_t
#define thread_t strongswan_thread_t
/* forward declaration, see below */
static inline int precancellable_poll(struct pollfd fds[], nfds_t nfds,
int timeout);