blob: 5b00ccf6e07e502133c158345d8c463331e10231 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Zlib Compression Library"
SECTION = "libs"
PRIORITY = "required"
HOMEPAGE = "http://www.gzip.org/zlib/"
LICENSE = "zlib"
INC_PR ="r7"
# Below option is added to overcome the GCC bug on ARM
# see http://gcc.gnu.org/PR42981 for further details.
# We could potentially take it off when its fixed in gcc 4.5
CFLAGS_append_arm = " -fforward-propagate "
BBCLASSEXTEND = "native sdk"
SRC_URI = "http://www.zlib.net/zlib-${PV}.tar.bz2"
inherit autotools
DEPENDS = "libtool-cross"
|