From b1bd0e2712aa0e1eb2adb6fc0b0f9a74020d34aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claes=20N=C3=A4st=C3=A9n?= Date: Wed, 19 Feb 2025 21:15:02 +0100 Subject: [PATCH] spawn: add missing _GPGRT_NEED_AFLOCAL define in spawn-posix.c Required for building under Solaris to get fallback AF_LOCAL (AF_UNIX) define setup. --- src/spawn-posix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spawn-posix.c b/src/spawn-posix.c index ac19761..dd30dce 100644 --- a/src/spawn-posix.c +++ b/src/spawn-posix.c @@ -55,6 +55,7 @@ # include #endif /*__linux__ */ +#define _GPGRT_NEED_AFLOCAL 1 #include "gpgrt-int.h"