From: Richard Purdie Date: Mon, 7 May 2012 09:50:03 +0000 (+0000) Subject: connman: Disable tist plugin on powerpc X-Git-Tag: 2015-4~10709 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=672846b0262add037daa2c9e434fe09388b58da8;p=openembedded-core.git connman: Disable tist plugin on powerpc This plugin doesn't build on powerpc due to powerpc's terminal ioctl defintions being incompatible with assumptions being made by this module. Until someone has need and can test this on powerpc, disabling is the safest option. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index 8b27cfb0d4..f2da8d9d74 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc @@ -20,6 +20,9 @@ DEPENDS = "dbus glib-2.0 ppp iptables gnutls \ ofono \ " +TIST = "--enable-tist" +TIST_powerpc = "" + EXTRA_OECONF += "\ ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \ ac_cv_path_PPPD=${sbindir}/pppd \ @@ -28,8 +31,8 @@ EXTRA_OECONF += "\ --enable-threads \ --enable-loopback \ --enable-ethernet \ - ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi --enable-tist', '--disable-wifi', d)} \ - ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth --enable-tist', '--disable-bluetooth', d)} \ + ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi ${TIST}', '--disable-wifi', d)} \ + ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth ${TIST}', '--disable-bluetooth', d)} \ --enable-dnsproxy \ --enable-ofono \ --enable-tools \