1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 11:25:07 +00:00
serenity/Ports/git/patches/have_no_librt.patch
Ben Wiederhake 4100aa52d9 Ports: Fix cross-compiling git for serenity
No idea how this is supposed to work, because git's buildscripts execute
'uname -S' to determine which functions are available - and that's not how
cross-compilation works.
2021-03-14 11:30:38 +01:00

12 lines
475 B
Diff

--- git-2.26.0/config.mak.uname.orig 2021-03-13 13:30:24.439217597 +0100
+++ git-2.26.0/config.mak.uname 2021-03-13 13:30:32.747203874 +0100
@@ -52,7 +52,8 @@
HAVE_CLOCK_GETTIME = YesPlease
HAVE_CLOCK_MONOTONIC = YesPlease
# -lrt is needed for clock_gettime on glibc <= 2.16
- NEEDS_LIBRT = YesPlease
+ # But not when cross-compiling for Serenity.
+ # NEEDS_LIBRT = YesPlease
HAVE_GETDELIM = YesPlease
SANE_TEXT_GREP=-a
FREAD_READS_DIRECTORIES = UnfortunatelyYes