aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHaritha D <harithamma.d@ibm.com>2024-03-06 05:44:17 +0000
committerJunio C Hamano <gitster@pobox.com>2024-03-06 08:10:58 -0800
commitd254e65092daba8667d6b4d5b4f59c099c1edd1f (patch)
tree03337b91fd1e89087e9cceff29c27eb0ed365a17
parentThe fourth batch (diff)
downloadgit-d254e65092daba8667d6b4d5b4f59c099c1edd1f.tar.gz
git-d254e65092daba8667d6b4d5b4f59c099c1edd1f.zip
build: support z/OS (OS/390).
Introduced z/OS (OS/390) as a platform in config.mak.uname Signed-off-by: Haritha D <harithamma.d@ibm.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--config.mak.uname12
1 files changed, 12 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname
index dacc95172d..d0dcca2ec5 100644
--- a/config.mak.uname
+++ b/config.mak.uname
@@ -638,6 +638,18 @@ ifeq ($(uname_S),NONSTOP_KERNEL)
SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
SHELL_PATH = /usr/coreutils/bin/bash
endif
+ifeq ($(uname_S),OS/390)
+ NO_SYS_POLL_H = YesPlease
+ NO_STRCASESTR = YesPlease
+ NO_REGEX = YesPlease
+ NO_MMAP = YesPlease
+ NO_NSEC = YesPlease
+ NO_STRLCPY = YesPlease
+ NO_MEMMEM = YesPlease
+ NO_GECOS_IN_PWENT = YesPlease
+ HAVE_STRINGS_H = YesPlease
+ NEEDS_MODE_TRANSLATION = YesPlease
+endif
ifeq ($(uname_S),MINGW)
ifeq ($(shell expr "$(uname_R)" : '1\.'),2)
$(error "Building with MSys is no longer supported")