summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/zsync/zsync-curl_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-extended/zsync/zsync-curl_git.bb')
-rw-r--r--meta-oe/recipes-extended/zsync/zsync-curl_git.bb10
1 files changed, 9 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/zsync/zsync-curl_git.bb b/meta-oe/recipes-extended/zsync/zsync-curl_git.bb
index 1bc4010f8a..5227b834f9 100644
--- a/meta-oe/recipes-extended/zsync/zsync-curl_git.bb
+++ b/meta-oe/recipes-extended/zsync/zsync-curl_git.bb
@@ -12,9 +12,17 @@ SRCREV = "00141c2806ccc4ddf2ff6263ee1612d19c0b713f"
12 12
13PV = "0.6.2+git" 13PV = "0.6.2+git"
14 14
15# Upstream repo does not tag
16UPSTREAM_CHECK_COMMITS = "1"
17
15inherit autotools 18inherit autotools
16 19
17S = "${WORKDIR}/git"
18AUTOTOOLS_SCRIPT_PATH = "${S}/src" 20AUTOTOOLS_SCRIPT_PATH = "${S}/src"
19 21
20BBCLASSEXTEND = "native nativesdk" 22BBCLASSEXTEND = "native nativesdk"
23
24# http://errors.yoctoproject.org/Errors/Details/766891/
25# git/src/libzsync/zsync.c:445:18: error: returning 'char **' from a function with incompatible return type 'const char * const*' [-Wincompatible-pointer-types]
26# git/src/libzsync/zsync.c:450:18: error: returning 'char **' from a function with incompatible return type 'const char * const*' [-Wincompatible-pointer-types]
27# git/src/libzsync/zsync.c:932:43: error: passing argument 4 of 'zsync_configure_zstream_for_zdata' from incompatible pointer type [-Wincompatible-pointer-types]
28CFLAGS += "-Wno-error=incompatible-pointer-types"