All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tiff: Make builds deterministic
@ 2012-03-28 11:21 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2012-03-28 11:21 UTC (permalink / raw)
  To: openembedded-core

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>
---
diff --git a/meta/recipes-multimedia/libtiff/tiff_4.0.1.bb b/meta/recipes-multimedia/libtiff/tiff_4.0.1.bb
index 6fb4163..54c4cbc 100644
--- a/meta/recipes-multimedia/libtiff/tiff_4.0.1.bb
+++ b/meta/recipes-multimedia/libtiff/tiff_4.0.1.bb
@@ -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"





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-03-28 11:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-28 11:21 [PATCH] tiff: Make builds deterministic Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.