mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-23 22:06:12 +03:00
third_party: Fix missing sgidefs.h for Musl
This commit is contained in:
parent
e1fb6f4d74
commit
79a7a78da5
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
#ifdef __mips__
|
#ifdef __mips__
|
||||||
// Include definitions of the ABI currently in use.
|
// Include definitions of the ABI currently in use.
|
||||||
#ifdef __BIONIC__
|
#if defined(__BIONIC__) || defined(__MUSL__)
|
||||||
// Android doesn't have sgidefs.h, but does have asm/sgidefs.h, which has the
|
// Android doesn't have sgidefs.h, but does have asm/sgidefs.h, which has the
|
||||||
// definitions we need.
|
// definitions we need.
|
||||||
#include <asm/sgidefs.h>
|
#include <asm/sgidefs.h>
|
||||||
|
2
src/third_party/lss/linux_syscall_support.h
vendored
2
src/third_party/lss/linux_syscall_support.h
vendored
@ -119,7 +119,7 @@ extern "C" {
|
|||||||
|
|
||||||
#ifdef __mips__
|
#ifdef __mips__
|
||||||
/* Include definitions of the ABI currently in use. */
|
/* Include definitions of the ABI currently in use. */
|
||||||
#ifdef __ANDROID__
|
#if defined(__ANDROID__) || defined(__MUSL__)
|
||||||
/* Android doesn't have sgidefs.h, but does have asm/sgidefs.h,
|
/* Android doesn't have sgidefs.h, but does have asm/sgidefs.h,
|
||||||
* which has the definitions we need.
|
* which has the definitions we need.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user