From: Sergey V. Lobanov Date: Sun, 9 Jan 2022 20:37:45 +0000 (+0300) Subject: neon: fix build on macos X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=3062e575dd9b57dbd866e1c3e240b4fef241a996;p=openwrt-packages.git 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 --- 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 \