diff options
author | stefson <herrtimson@yahoo.de> | 2020-09-27 10:26:54 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-10-06 13:53:59 +0000 |
commit | 140cb6ad1f0a8d8217453aa2ccb16e00d5a02c0a (patch) | |
tree | e556edf2b0cd5885511eeeaf8aa8d7c5a90ee3f1 /app-arch/zstd/files | |
parent | dev-libs/serd: Stabilize 0.30.4 arm, #744769 (diff) | |
download | gentoo-140cb6ad1f0a8d8217453aa2ccb16e00d5a02c0a.tar.gz gentoo-140cb6ad1f0a8d8217453aa2ccb16e00d5a02c0a.tar.bz2 gentoo-140cb6ad1f0a8d8217453aa2ccb16e00d5a02c0a.zip |
app-arch/zstd: fix compile with uclibc
Closes: https://bugs.gentoo.org/741972
Signed-off-by: Steffen Kuhn <nielson2@yandex.com>
Closes: https://github.com/gentoo/gentoo/pull/17691
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch/zstd/files')
-rw-r--r-- | app-arch/zstd/files/zstd-1.4.5-fix-uclibc-ng.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-arch/zstd/files/zstd-1.4.5-fix-uclibc-ng.patch b/app-arch/zstd/files/zstd-1.4.5-fix-uclibc-ng.patch new file mode 100644 index 000000000000..e4c2335d199f --- /dev/null +++ b/app-arch/zstd/files/zstd-1.4.5-fix-uclibc-ng.patch @@ -0,0 +1,28 @@ +From 1dcc4787965aa8f4af48ed5a2154185750bbaff5 Mon Sep 17 00:00:00 2001 +From: Yann Collet <cyan@fb.com> +Date: Mon, 13 Jul 2020 14:16:33 -0700 +Subject: [PATCH] fix uclibc's st_mtim + +reported and suggested by @ewildgoose (#1872) +--- + programs/platform.h | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git a/programs/platform.h b/programs/platform.h +index 2b4b9f2d8..68be70bb3 100644 +--- a/programs/platform.h ++++ b/programs/platform.h +@@ -102,6 +102,12 @@ extern "C" { + # define PLATFORM_POSIX_VERSION 1 + # endif + ++# ifdef __UCLIBC__ ++# ifndef __USE_MISC ++# define __USE_MISC /* enable st_mtim on uclibc */ ++# endif ++# endif ++ + # else /* non-unix target platform (like Windows) */ + # define PLATFORM_POSIX_VERSION 0 + # endif + |