termux-packages/packages/git/config.mak.uname.patch

24 lines
1003 B
Diff

Set uname_S to Linux instead of detecting build machine.
Android before API 26 does not support sync_file_range.
diff -uNr ../git-2.36.0/config.mak.uname ./config.mak.uname
--- ../git-2.36.0/config.mak.uname 2022-04-18 02:52:38.000000000 -0300
+++ ./config.mak.uname 2022-05-03 21:26:12.831013435 -0300
@@ -4,7 +4,7 @@
# Microsoft's Safe Exception Handling in libraries (such as zlib).
# Typically required for VS2013+/32-bit compilation on Vista+ versions.
-uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
+uname_S := Linux
uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
@@ -57,7 +57,6 @@
HAVE_CLOCK_MONOTONIC = YesPlease
# -lrt is needed for clock_gettime on glibc <= 2.16
NEEDS_LIBRT = YesPlease
- HAVE_SYNC_FILE_RANGE = YesPlease
HAVE_GETDELIM = YesPlease
FREAD_READS_DIRECTORIES = UnfortunatelyYes
BASIC_CFLAGS += -DHAVE_SYSINFO