diff options
Diffstat (limited to 'meta-oe/recipes-extended/zsync/zsync-curl_git.bb')
-rw-r--r-- | meta-oe/recipes-extended/zsync/zsync-curl_git.bb | 10 |
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 | ||
13 | PV = "0.6.2+git" | 13 | PV = "0.6.2+git" |
14 | 14 | ||
15 | # Upstream repo does not tag | ||
16 | UPSTREAM_CHECK_COMMITS = "1" | ||
17 | |||
15 | inherit autotools | 18 | inherit autotools |
16 | 19 | ||
17 | S = "${WORKDIR}/git" | ||
18 | AUTOTOOLS_SCRIPT_PATH = "${S}/src" | 20 | AUTOTOOLS_SCRIPT_PATH = "${S}/src" |
19 | 21 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 22 | BBCLASSEXTEND = "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] | ||
28 | CFLAGS += "-Wno-error=incompatible-pointer-types" | ||