diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2012-03-01 12:20:39 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-02 09:18:54 +0100 |
commit | f45774e2b07523cf45d1bb8b720f8757359bb47e (patch) | |
tree | eb38fde0e8efa363d0f9cbbe942f0fd6d61bd044 /meta-oe | |
parent | 9179b36a84fec78b7ede07d29c5aa6d6315f31a4 (diff) | |
download | meta-openembedded-f45774e2b07523cf45d1bb8b720f8757359bb47e.tar.gz |
giflib: don't link against libx11, don't depend on libsm
libsm wasn't used unless libx11 was built before giflib. Therefore
drop the dependency on libsm and disable x11 unconditionally like
Debian does.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb b/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb index bd7b495ec..e1a07774f 100644 --- a/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb +++ b/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb | |||
@@ -2,13 +2,13 @@ DESCRIPTION = "shared library for GIF images" | |||
2 | SECTION = "libs" | 2 | SECTION = "libs" |
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ae11c61b04b2917be39b11f78d71519a" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ae11c61b04b2917be39b11f78d71519a" |
5 | PR = "r2" | 5 | PR = "r3" |
6 | 6 | ||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.bz2" | 7 | SRC_URI = "${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.bz2" |
8 | 8 | ||
9 | inherit autotools | 9 | inherit autotools |
10 | 10 | ||
11 | DEPENDS = "libsm" | 11 | EXTRA_OECONF = "--disable-x11" |
12 | 12 | ||
13 | PACKAGES += "${PN}-utils" | 13 | PACKAGES += "${PN}-utils" |
14 | FILES_${PN} = "${libdir}/libgif.so.*" | 14 | FILES_${PN} = "${libdir}/libgif.so.*" |