summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/log4c/log4c_1.2.4.bb
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2015-02-18 22:50:36 -0800
committerMartin Jansa <Martin.Jansa@gmail.com>2015-02-27 09:35:52 +0100
commitf4a111e8d9e13e1702ef7502ca7468b9ccd035cd (patch)
treedbfca804a9efd60c0bf7a25f1e998cd5aa1b636c /meta-oe/recipes-support/log4c/log4c_1.2.4.bb
parentda6ca531874356077977e9bfed661629a95eb16d (diff)
downloadmeta-openembedded-f4a111e8d9e13e1702ef7502ca7468b9ccd035cd.tar.gz
log4c: fix undeclared dependency on expat
The original log4c configure.in is buggy and requires fixing before "configure --with-expat" works as expected. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/log4c/log4c_1.2.4.bb')
-rw-r--r--meta-oe/recipes-support/log4c/log4c_1.2.4.bb13
1 files changed, 6 insertions, 7 deletions
diff --git a/meta-oe/recipes-support/log4c/log4c_1.2.4.bb b/meta-oe/recipes-support/log4c/log4c_1.2.4.bb
index 43e074699..ea75757f8 100644
--- a/meta-oe/recipes-support/log4c/log4c_1.2.4.bb
+++ b/meta-oe/recipes-support/log4c/log4c_1.2.4.bb
@@ -1,16 +1,15 @@
1SUMMARY = "Logging Framework for C" 1SUMMARY = "Log4c is a C library for flexible logging to files, syslog and other destinations"
2HOMEPAGE = "http://log4c.sourceforge.net" 2HOMEPAGE = "http://log4c.sourceforge.net"
3LICENSE = "LGPLv2" 3LICENSE = "LGPLv2"
4
5LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" 4LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
6 5
7SRC_URI = "http://cznic.dl.sourceforge.net/project/log4c/log4c/${PV}/log4c-${PV}.tar.gz" 6SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.gz \
7 file://fix_configure_with-expat.patch"
8
8SRC_URI[md5sum] = "0d94919136e1d16b68427562e74cb3dd" 9SRC_URI[md5sum] = "0d94919136e1d16b68427562e74cb3dd"
9SRC_URI[sha256sum] = "5991020192f52cc40fa852fbf6bbf5bd5db5d5d00aa9905c67f6f0eadeed48ea" 10SRC_URI[sha256sum] = "5991020192f52cc40fa852fbf6bbf5bd5db5d5d00aa9905c67f6f0eadeed48ea"
10 11
11S = "${WORKDIR}/${PN}-${PV}" 12PACKAGECONFIG ??= "expat"
12 13PACKAGECONFIG[expat] = "--with-expat,--without-expat,expat"
13EXTRA_OECONF = "--prefix=/usr"
14 14
15inherit autotools 15inherit autotools
16