From: Khem Raj Date: Fri, 31 Aug 2012 21:12:52 +0000 (-0700) Subject: ofono: Fix build on uclibc X-Git-Tag: 2015-4~9345 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=bf9fa09109f172e85fab14dd3ad0cf22dbd7fd14;p=openembedded-core.git ofono: Fix build on uclibc It used O_CLOEXEC which is a GNU libc feature so lets add the appropriate flag Signed-off-by: Khem Raj Signed-off-by: Saul Wold --- diff --git a/meta/recipes-connectivity/ofono/ofono_1.10.bb b/meta/recipes-connectivity/ofono/ofono_1.10.bb index 1aa137f17f..d150961be4 100644 --- a/meta/recipes-connectivity/ofono/ofono_1.10.bb +++ b/meta/recipes-connectivity/ofono/ofono_1.10.bb @@ -4,7 +4,7 @@ SRC_URI = "\ ${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.bz2 \ file://ofono \ " -PR = "r0" +PR = "r1" SRC_URI[md5sum] = "dab284efb8cc4143d6f53d0fcc37b696" SRC_URI[sha256sum] = "e7931ac0dbe165eb0e16a38b7cb4acca59b704f356ec13583d58027135e3efa5" @@ -14,4 +14,4 @@ EXTRA_OECONF += "\ --enable-test \ ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \ " - +CFLAGS_append_libc-uclibc = " -D_GNU_SOURCE"