diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-15 10:24:23 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-15 10:48:58 +0100 |
commit | 877336508d3e947c46c0165a52891fe4645ad5c1 (patch) | |
tree | 18802e79ffc15f31b821d67ccc26b4e5b212663b /recipes/libtiff | |
parent | af193378c397a9fd872445247e60ffb0a1e6399f (diff) |
tiff 3.9.2: fix build breakage
Diffstat (limited to 'recipes/libtiff')
-rw-r--r-- | recipes/libtiff/tiff_3.9.2.bb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/libtiff/tiff_3.9.2.bb b/recipes/libtiff/tiff_3.9.2.bb index 9beb444954..5f022e0b1d 100644 --- a/recipes/libtiff/tiff_3.9.2.bb +++ b/recipes/libtiff/tiff_3.9.2.bb @@ -4,13 +4,21 @@ HOMEPAGE = "http://www.remotesensing.org/libtiff/" DEPENDS = "zlib jpeg lzo" PV = "3.9.2+4.0.0beta5" +PR = "r1" + SRC_URI = "ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.0beta5.tar.gz;name=tiff400beta5targz" SRC_URI[tiff400beta5targz.md5sum] = "a0a83604e38a299fae9f0b1a39c04870" SRC_URI[tiff400beta5targz.sha256sum] = "64b61567782643a841e33a8d031d0d6a9b3e436108829e2e947183f8dcdc6ec7" S = "${WORKDIR}/${PN}-4.0.0beta5" -inherit autotools_stage +inherit autotools + +# requires a too recent, non-default autoconf +do_configure() { + gnu-configize + oe_runconf +} PACKAGES =+ "tiffxx tiffxx-dbg tiffxx-dev tiff-utils tiff-utils-dbg" FILES_tiffxx = "${libdir}/libtiffxx.so.*" |