mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
package/libxmlrpc: fix shared libraries build for uClibc
libxmlrpc is able to build shared libraries only for (e)glibc system since the regexp in config.mk.in is based on "linux-gnu". Change this regexp to match "linux-uclibc". Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
5dd1134e16
commit
0ad2d66919
@ -0,0 +1,27 @@
|
|||||||
|
From 5d68179a54b0a34d989722dcbe3b6eb962feb27d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Romain Naour <romain.naour@openwide.fr>
|
||||||
|
Date: Tue, 23 Dec 2014 16:04:18 +0100
|
||||||
|
Subject: [PATCH] config.mk.in: fix shared libraries build for uClibc
|
||||||
|
|
||||||
|
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
|
||||||
|
---
|
||||||
|
config.mk.in | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/config.mk.in b/config.mk.in
|
||||||
|
index c5d4160..45461cf 100644
|
||||||
|
--- a/config.mk.in
|
||||||
|
+++ b/config.mk.in
|
||||||
|
@@ -166,7 +166,8 @@ shliblefn = $(1:%=%.shlibledummy)
|
||||||
|
# HOST_OS is usually has a version number suffix, e.g. "aix5.3.0.0", so
|
||||||
|
# we compare based on prefix.
|
||||||
|
|
||||||
|
-ifeq ($(patsubst linux-gnu%,linux-gnu,$(HOST_OS)),linux-gnu)
|
||||||
|
+# linux-uclibc is also a linux
|
||||||
|
+ifeq ($(patsubst linux-%,linux-,$(HOST_OS)),linux-)
|
||||||
|
# Assume linker is GNU Compiler (gcc)
|
||||||
|
SHARED_LIB_TYPE = unix
|
||||||
|
MUST_BUILD_SHLIB = Y
|
||||||
|
--
|
||||||
|
1.9.3
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user