30 lines
843 B
Diff
30 lines
843 B
Diff
From b19f8f360970ffd0c1a6ac41e07c66dc39790b16 Mon Sep 17 00:00:00 2001
|
|
From: Waldemar Brodkorb <wbx@openadk.org>
|
|
Date: Wed, 10 May 2023 08:35:25 +0200
|
|
Subject: [PATCH] gettimeofday: fix static build
|
|
|
|
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
|
|
Upstream: https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/commit/?id=b19f8f360970ffd0c1a6ac41e07c66dc39790b16
|
|
---
|
|
libc/sysdeps/linux/common/gettimeofday.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/libc/sysdeps/linux/common/gettimeofday.c b/libc/sysdeps/linux/common/gettimeofday.c
|
|
index e5141088e..12473a8e6 100755
|
|
--- a/libc/sysdeps/linux/common/gettimeofday.c
|
|
+++ b/libc/sysdeps/linux/common/gettimeofday.c
|
|
@@ -9,8 +9,9 @@
|
|
#include <sys/syscall.h>
|
|
#include <sys/time.h>
|
|
|
|
+#ifdef SHARED
|
|
#include "ldso.h"
|
|
-
|
|
+#endif
|
|
|
|
|
|
#ifdef __VDSO_SUPPORT__
|
|
--
|
|
2.30.2
|
|
|