diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2016-07-25 21:54:57 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-01 11:47:10 +0100 |
commit | b332b38ccfbd1ccc5b997cc85fe64121398919ee (patch) | |
tree | bc01b33bb69fc9aca430aa236990d854b455bdb9 /meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb | |
parent | baaaea5145af375a7630751f024ef5cb82ae7a2b (diff) | |
download | poky-b332b38ccfbd1ccc5b997cc85fe64121398919ee.tar.gz |
avahi-ui: use PACKAGECONFIG for gtk features
The commit "054ea20 avahi-ui: Build with Gtk+3"
enabled gtk3 and disabled gtk2, which causes failure on
some package depends on gtk2, like gnome-disk-utility
in meta-openembedded/meta-gnome:
| checking for GTK2... yes
| checking for AVAHI_UI... no
| configure: error: Package requirements (avahi-ui >= 0.6.25) were not met:
|
| No package 'avahi-ui' found
The gtk2 and gtk3 feature for avahi-ui is not exclusive, so change
to use PACKAGECONFIG for them so we can easily enable/disable one
of them or both of them as needed.
(From OE-Core rev: bb44ef79c1ea9fb1d2e37978bcf964e62caaf4cd)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb')
-rw-r--r-- | meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb b/meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb index c6f67f1eca..ac364618e4 100644 --- a/meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb +++ b/meta/recipes-connectivity/avahi/avahi-ui_0.6.32.bb | |||
@@ -13,9 +13,9 @@ SRC_URI += "file://0001-configure.ac-install-GtkBuilder-interface-files-for-.pat | |||
13 | SRC_URI[md5sum] = "22b5e705d3eabb31d26f2e1e7b074013" | 13 | SRC_URI[md5sum] = "22b5e705d3eabb31d26f2e1e7b074013" |
14 | SRC_URI[sha256sum] = "d54991185d514a0aba54ebeb408d7575b60f5818a772e28fa0e18b98bc1db454" | 14 | SRC_URI[sha256sum] = "d54991185d514a0aba54ebeb408d7575b60f5818a772e28fa0e18b98bc1db454" |
15 | 15 | ||
16 | DEPENDS += "avahi gtk+3" | 16 | DEPENDS += "avahi" |
17 | 17 | ||
18 | AVAHI_GTK = "--disable-gtk --enable-gtk3 --disable-pygtk" | 18 | AVAHI_GTK = "gtk3" |
19 | 19 | ||
20 | S = "${WORKDIR}/avahi-${PV}" | 20 | S = "${WORKDIR}/avahi-${PV}" |
21 | 21 | ||