Commit 74e4e830 authored by Waldemar Brodkorb's avatar Waldemar Brodkorb Committed by Thomas Petazzoni
Browse files

uclibc: fix MIPS builds with disabled threads



There was a regression found while building for MIPS
with disabled threads. Upstream patch fixed it.

Signed-off-by: default avatarWaldemar Brodkorb <wbx@openadk.org>
Acked-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent f25df488
Loading
Loading
Loading
Loading
+59 −0
Original line number Diff line number Diff line
From b499fe614ac5b492fc0fdc6e1fbbeeb904674159 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@uclibc-ng.org>
Date: Wed, 3 Feb 2016 21:57:04 +0100
Subject: [PATCH] mips: fix build if threads are disabled

Reported-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
---
 libc/string/mips/memcpy.S |    4 ++--
 libc/string/mips/memset.S |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libc/string/mips/memcpy.S b/libc/string/mips/memcpy.S
index 3afdb2c..59f9f0a 100644
--- a/libc/string/mips/memcpy.S
+++ b/libc/string/mips/memcpy.S
@@ -23,7 +23,7 @@
 # define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
 #elif _LIBC
 # include <sysdep.h>
-# include <regdef.h>
+# include <sys/regdef.h>
 # include <sys/asm.h>
 # define PREFETCH_LOAD_HINT PREFETCH_HINT_LOAD_STREAMED
 # define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
@@ -33,7 +33,7 @@
 # define PREFETCH_LOAD_HINT PREFETCH_HINT_LOAD_STREAMED
 # define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
 #else
-# include <regdef.h>
+# include <sys/regdef.h>
 # include <sys/asm.h>
 #endif
 
diff --git a/libc/string/mips/memset.S b/libc/string/mips/memset.S
index ef8ab0b..43034ce 100644
--- a/libc/string/mips/memset.S
+++ b/libc/string/mips/memset.S
@@ -21,7 +21,7 @@
 # define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
 #elif _LIBC
 # include <sysdep.h>
-# include <regdef.h>
+# include <sys/regdef.h>
 # include <sys/asm.h>
 # define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
 #elif defined _COMPILING_NEWLIB
@@ -29,7 +29,7 @@
 # include "machine/regdef.h"
 # define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
 #else
-# include <regdef.h>
+# include <sys/regdef.h>
 # include <sys/asm.h>
 #endif
 
-- 
1.7.10.4