[PATCH libgpg-error] Add support for IBM z/OS
Sachin T
sachin.t at ibm.com
Tue Jun 10 17:15:15 CEST 2025
Hi,
Please review patch required for IBM z/OS platform.
1. mkheader target depends on “zoslib”(specific to z/OS platform) which is passed via LIBS
2. Uses AF_UNIX instead of AF_LOCAL in socketpair().
3. On z/OS, environ is defined as a macro in <stdlib.h>, so it is temporarily redefined around the header inclusion to avoid conflicts.
Regards
Sachin
---
>From cbea5636c31668ae238d899dfa6d1f4682704f83 Mon Sep 17 00:00:00 2001
From: Sachin T sachin.t at ibm.com<mailto:sachin.t at ibm.com>
Date: Tue, 10 Jun 2025 20:14:04 +0530
Subject: [PATCH] Add patches for IBM z/OS
Signed-off-by: Sachin T sachin.t at ibm.com<mailto:sachin.t at ibm.com>
---
src/Makefile.am | 2 +-
src/spawn-posix.c | 13 +++++++++++++
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index e56bb23..7e874cf 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -275,7 +275,7 @@ errnos-sym.h: Makefile mkstrtable.awk errnos.in
mkheader$(EXEEXT_FOR_BUILD): mkheader.c Makefile
$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) \
- $(CPPFLAGS_FOR_BUILD) -g -I. -I$(srcdir) -o $@ $(srcdir)/mkheader.c
+ $(CPPFLAGS_FOR_BUILD) -g -I. -I$(srcdir) -o $@ $(srcdir)/mkheader.c $(LIBS)
parts_of_gpg_error_h = \
gpg-error.h.in \
diff --git a/src/spawn-posix.c b/src/spawn-posix.c
index ac19761..2666862 100644
--- a/src/spawn-posix.c
+++ b/src/spawn-posix.c
@@ -27,8 +27,17 @@
#error This code is only used on POSIX
#endif
+#if defined(__MVS__)
+#define environ environ_replace
+#endif
+
#include <stdio.h>
#include <stdlib.h>
+
+#if defined(__MVS__)
+#undef environ
+#endif
+
#include <stdint.h>
#include <string.h>
#include <errno.h>
@@ -330,7 +339,11 @@ do_create_socketpair (int filedes[2])
gpg_error_t err = 0;
_gpgrt_pre_syscall ();
+#if defined(__MVS__)
+ if (socketpair (AF_UNIX, SOCK_STREAM, 0, filedes) == -1)
+#else
if (socketpair (AF_LOCAL, SOCK_STREAM, 0, filedes) == -1)
+#endif
{
err = _gpg_err_code_from_syserror ();
filedes[0] = filedes[1] = -1;
--
2.39.5 (Apple Git-154)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gnupg.org/pipermail/gnupg-devel/attachments/20250610/d1c036b7/attachment-0001.html>
More information about the Gnupg-devel
mailing list