From 3062e575dd9b57dbd866e1c3e240b4fef241a996 Mon Sep 17 00:00:00 2001 From: "Sergey V. Lobanov" Date: Sun, 9 Jan 2022 23:37:45 +0300 Subject: [PATCH] neon: fix build on macos neon detects Darwin on target build and fails due to darwin-specific build behaviour. OS detection is disable (as non required) via ne_cv_os_uname=Linux as a part of CONFIGURE_VARS Signed-off-by: Sergey V. Lobanov --- libs/neon/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/neon/Makefile b/libs/neon/Makefile index 281506c99..5d054d9f9 100644 --- a/libs/neon/Makefile +++ b/libs/neon/Makefile @@ -47,6 +47,9 @@ define Package/libneon/description - WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify property manipulation. endef +CONFIGURE_VARS += \ + ne_cv_os_uname="Linux" + CONFIGURE_ARGS += \ --enable-shared \ --enable-static \