summaryrefslogtreecommitdiff
path: root/packages/gdb/9.2/0001-uclibc-no-gettimeofday-clobber.patch
blob: 2a549ddb221e74b367c988b954a998d978ae574b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Improve gnulib in gdb's guess work, gettimeofday() works in uClibcm promise.

This patch helps building x86_64-unknown-linux-uclibc toolchains, the final
gdb-native step otherwise fails when linking the libinproctrace.so

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
Signed-off-by: Alexey Neyman <stilor@att.net>

---
 gnulib/configure                 |    1 +
 gnulib/import/m4/gettimeofday.m4 |    1 +
 2 files changed, 2 insertions(+)

--- a/gnulib/configure
+++ b/gnulib/configure
@@ -20267,6 +20267,7 @@
       case "$host_os" in
                 # Guess all is fine on glibc systems.
         *-gnu*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
+        *-uclibc*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
                 # If we don't know, assume the worst.
         *)      gl_cv_func_gettimeofday_clobber="guessing yes" ;;
       esac
--- a/gnulib/import/m4/gettimeofday.m4
+++ b/gnulib/import/m4/gettimeofday.m4
@@ -111,6 +111,7 @@
       case "$host_os" in
                 # Guess all is fine on glibc systems.
         *-gnu*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
+        *-uclibc*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
                 # If we don't know, assume the worst.
         *)      gl_cv_func_gettimeofday_clobber="guessing yes" ;;
       esac