diff options
author | Richard Purdie <richard@openedhand.com> | 2008-08-25 20:39:55 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-08-25 20:39:55 +0000 |
commit | 0f9c34a9723254d439239ab992893c4956711d53 (patch) | |
tree | 567777b1671444db9dab736ff1e8ba9f11130a51 /meta/packages/zlib/zlib_1.2.3.bb | |
parent | 603e247e23fe95f32a7ea45649c74878dfa49b21 (diff) | |
download | openembedded-core-0f9c34a9723254d439239ab992893c4956711d53.tar.gz openembedded-core-0f9c34a9723254d439239ab992893c4956711d53.tar.bz2 openembedded-core-0f9c34a9723254d439239ab992893c4956711d53.zip |
zlib: Upgrade from 1.2.3 to 1.2.3.3 to add 64 bit extensions and improve operation on recent 64 bit platforms
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5094 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/zlib/zlib_1.2.3.bb')
-rw-r--r-- | meta/packages/zlib/zlib_1.2.3.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/packages/zlib/zlib_1.2.3.bb b/meta/packages/zlib/zlib_1.2.3.bb index 69f78687f2..eeb6f3f5bb 100644 --- a/meta/packages/zlib/zlib_1.2.3.bb +++ b/meta/packages/zlib/zlib_1.2.3.bb @@ -3,9 +3,10 @@ SECTION = "libs" PRIORITY = "required" HOMEPAGE = "http://www.gzip.org/zlib/" LICENSE = "zlib" -PR = "r2" +PR = "r4" SRC_URI = "http://www.zlib.net/zlib-1.2.3.tar.bz2 \ + file://1.2.3.3.dfsg.patch.gz;patch=1 \ file://visibility.patch;patch=1 \ file://autotools.patch;patch=1 " @@ -16,8 +17,9 @@ DEPENDS = "libtool-cross" inherit autotools do_stage() { - install -m 0644 zlib.h ${STAGING_INCDIR}/zlib.h - install -m 0644 zconf.h ${STAGING_INCDIR}/zconf.h + install -m 0644 zlib.h ${STAGING_INCDIR}/ + install -m 0644 zconf.h ${STAGING_INCDIR}/ + install -m 0644 zlibdefs.h ${STAGING_INCDIR}/ oe_libinstall -a -so libz ${STAGING_LIBDIR} } |