From 39bef695f783614e6175477417298ddf37e2ac13 Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Tue, 19 Apr 2022 16:58:43 +0900 Subject: [PATCH 2/8] Ignore SCM_CREDS on macOS It was added for FreeBSD support, but also enables the unsupported[citation needed] feature on macOS. --- src/pulsecore/creds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulsecore/creds.h b/src/pulsecore/creds.h index b599b569c..b5b1c9f37 100644 --- a/src/pulsecore/creds.h +++ b/src/pulsecore/creds.h @@ -34,7 +34,7 @@ typedef struct pa_creds pa_creds; typedef struct pa_cmsg_ancil_data pa_cmsg_ancil_data; -#if defined(SCM_CREDENTIALS) || defined(SCM_CREDS) +#if defined(SCM_CREDENTIALS) || (defined(SCM_CREDS) && !defined(__APPLE__)) #define HAVE_CREDS 1 -- 2.35.1