]> code.ossystems Code Review - openembedded-core.git/commitdiff
tiff: Make builds deterministic
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 28 Mar 2012 11:16:48 +0000 (11:16 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 28 Mar 2012 15:52:57 +0000 (16:52 +0100)
libtiff now depends on lzma which can be obtained from xz and doesn't use lzo.
Previously, libtiff would detect and use lzma if it was present leading to
a number of race conditions including failures in things linking to libtiff
such as ghostscript since lzma could be removed while being rebuild leading
to failures in linking.

This patch corrects the dependency.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-multimedia/libtiff/tiff_4.0.1.bb

index 6fb41638afeb07af1cd0cdbf7ddd0d6b796cce86..54c4cbc1f63017596a880d4ecd33f33eec95e214 100644 (file)
@@ -2,8 +2,8 @@ DESCRIPTION = "This software provides support for the Tag Image File Format (TIF
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=34da3db46fab7501992f9615d7e158cf"
 HOMEPAGE = "http://www.remotesensing.org/libtiff/"
-DEPENDS = "zlib jpeg lzo"
-PR = "r0"
+DEPENDS = "zlib jpeg xz"
+PR = "r1"
 
 SRC_URI = "ftp://ftp.remotesensing.org/pub/libtiff/tiff-${PV}.tar.gz \
            file://libtool2.patch"