mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
|
From 231c1fb97785290aaac89ed74d7cb24eaa74b363 Mon Sep 17 00:00:00 2001
|
||
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||
|
Date: Sun, 2 Sep 2018 12:05:22 +0200
|
||
|
Subject: [PATCH] Fix build failure on musl
|
||
|
|
||
|
Build fails on:
|
||
|
/home/test/autobuild/run/instance-0/output/build/chipmunk-7.0.2/src/cpHastySpace.c:11:24: fatal error: sys/sysctl.h: No such file or directory
|
||
|
|
||
|
Indeed, sys/sysctl.h is not available on musl so include this header
|
||
|
only if __APPLE__ is defined as sysctlbyname is only used in this case.
|
||
|
|
||
|
Fixes:
|
||
|
- http://autobuild.buildroot.org/results/e5be2f8eb9315a9054e1c8d854dec37cbb28eed7
|
||
|
|
||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||
|
[Upstream status: https://github.com/slembcke/Chipmunk2D/pull/171]
|
||
|
---
|
||
|
src/cpHastySpace.c | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/src/cpHastySpace.c b/src/cpHastySpace.c
|
||
|
index 8dca425..e087df8 100644
|
||
|
--- a/src/cpHastySpace.c
|
||
|
+++ b/src/cpHastySpace.c
|
||
|
@@ -8,7 +8,9 @@
|
||
|
|
||
|
//#include <sys/param.h >
|
||
|
#ifndef _WIN32
|
||
|
+#ifdef __APPLE__
|
||
|
#include <sys/sysctl.h>
|
||
|
+#endif
|
||
|
#include <pthread.h>
|
||
|
#else
|
||
|
#ifndef WIN32_LEAN_AND_MEAN
|
||
|
--
|
||
|
2.17.1
|
||
|
|