diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-14 14:34:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-15 18:21:46 +0100 |
commit | fa3df0eabefdc8841382b058973979cb84cf2bbc (patch) | |
tree | 2c8002080acaf2d7ca198a52bcb8186e39ea5ce5 /meta | |
parent | 71135b348e1d72e908caa6f8479100ad9739c5bb (diff) | |
download | poky-fa3df0eabefdc8841382b058973979cb84cf2bbc.tar.gz |
glib-2.0: Allow correct printf configuration on darwin/mingw
mingw and darwin builds need to change the value of printf from no
to yes. Whilst you can do this from a bbappend, its currently a bit ugly
and assumes knowledge of the other conf arguments. Fixing this in the glib
recipe directly is cleaner in this case.
(From OE-Core rev: ba37c147e82e6466030cf40a9e86442ac7592185)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/glib-2.0/glib.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index 373f96243a..f797ab3d2c 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc | |||
@@ -31,7 +31,10 @@ S = "${WORKDIR}/glib-${PV}" | |||
31 | 31 | ||
32 | CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap --disable-man" | 32 | CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap --disable-man" |
33 | 33 | ||
34 | EXTRA_OECONF = "--enable-included-printf=no ${CORECONF}" | 34 | PRINTF = "--enable-included-printf=no" |
35 | PRINTF_darwin = "--enable-included-printf=yes" | ||
36 | PRINTF_mingw32 = "--enable-included-printf=yes" | ||
37 | EXTRA_OECONF = "${PRINTF} ${CORECONF}" | ||
35 | EXTRA_OECONF_class-native = "${CORECONF} --disable-selinux" | 38 | EXTRA_OECONF_class-native = "${CORECONF} --disable-selinux" |
36 | EXTRA_OECONF_append_libc-uclibc = " --with-libiconv=gnu" | 39 | EXTRA_OECONF_append_libc-uclibc = " --with-libiconv=gnu" |
37 | 40 | ||