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

26 lines
1.0 KiB
Diff
Raw Normal View History

2016-09-03 23:32:42 +02:00
Set uname_S to Linux instead of detecting build machine.
Android does not support -lrt.
2022-05-04 01:32:59 +02:00
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.
2016-09-03 23:32:42 +02:00
-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')
2022-05-04 01:32:59 +02:00
@@ -55,9 +55,6 @@
2016-09-03 23:32:42 +02:00
HAVE_DEV_TTY = YesPlease
HAVE_CLOCK_GETTIME = YesPlease
HAVE_CLOCK_MONOTONIC = YesPlease
- # -lrt is needed for clock_gettime on glibc <= 2.16
- NEEDS_LIBRT = YesPlease
2022-05-04 01:32:59 +02:00
- HAVE_SYNC_FILE_RANGE = YesPlease
2016-09-03 23:32:42 +02:00
HAVE_GETDELIM = YesPlease
2022-05-04 01:32:59 +02:00
FREAD_READS_DIRECTORIES = UnfortunatelyYes
BASIC_CFLAGS += -DHAVE_SYSINFO