All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] openvswitch: add missing inherit
@ 2013-12-18 20:42 Mark Asselstine
  2013-12-18 20:42 ` [PATCH] libvirt: " Mark Asselstine
  2013-12-18 21:16 ` [PATCH 1/2] openvswitch: " Bruce Ashfield
  0 siblings, 2 replies; 3+ messages in thread
From: Mark Asselstine @ 2013-12-18 20:42 UTC (permalink / raw)
  To: bruce.ashfield; +Cc: meta-virtualization

openvswitch requires pkgconfig or you may see an error:

configure.ac:53: error: Please install pkg-config.

during configure.

Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
---
Bruce,

Here is another set of commits to fix potential build issues, usually
encountered while building out of sstate. Sorry for not grouping these
with my recent lxc commit, I pulled the trigger too quickly.

Mark


 recipes-networking/openvswitch/openvswitch_1.10.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-networking/openvswitch/openvswitch_1.10.0.bb b/recipes-networking/openvswitch/openvswitch_1.10.0.bb
index 02c8ab3..931beb8 100644
--- a/recipes-networking/openvswitch/openvswitch_1.10.0.bb
+++ b/recipes-networking/openvswitch/openvswitch_1.10.0.bb
@@ -59,7 +59,7 @@ FILES_${PN}-switch = "${sysconfdir}/init.d/openvswitch-switch \
 FILES_${PN} += "${datadir}/ovsdbmonitor"
 FILES_${PN} += "/run"
 
-inherit autotools update-rc.d
+inherit autotools update-rc.d pkgconfig
 
 INITSCRIPT_PACKAGES = "${PN}-switch ${PN}-controller"
 INITSCRIPT_NAME_${PN}-switch = "openvswitch-switch"
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] libvirt: add missing inherit
  2013-12-18 20:42 [PATCH 1/2] openvswitch: add missing inherit Mark Asselstine
@ 2013-12-18 20:42 ` Mark Asselstine
  2013-12-18 21:16 ` [PATCH 1/2] openvswitch: " Bruce Ashfield
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Asselstine @ 2013-12-18 20:42 UTC (permalink / raw)
  To: bruce.ashfield; +Cc: meta-virtualization

libvirt's configure script makes use of pkg-config so we need to inherit
pkgconfig or else we may see an error like

./configure: line 55867: syntax error near unexpected token `AVAHI,'
./configure: line 55867: `    PKG_CHECK_MODULES(AVAHI, avahi-client >= 0.6.0,'

during configure.

Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
---
 recipes-extended/libvirt/libvirt_1.2.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/libvirt/libvirt_1.2.0.bb b/recipes-extended/libvirt/libvirt_1.2.0.bb
index 80f06a2..f574ec5 100644
--- a/recipes-extended/libvirt/libvirt_1.2.0.bb
+++ b/recipes-extended/libvirt/libvirt_1.2.0.bb
@@ -27,7 +27,7 @@ SRC_URI = "http://libvirt.org/sources/libvirt-${PV}.tar.gz \
 SRC_URI[md5sum] = "f74f78059def4e68d69b975ad6e6c3e2"
 SRC_URI[sha256sum] = "a8e578ae7861db2ac5f454073293d2ef3229fd3f6c4f9029101763244db22ddd"
 
-inherit autotools gettext update-rc.d
+inherit autotools gettext update-rc.d pkgconfig
 
 CACHED_CONFIGUREVARS += "\
 ac_cv_path_XMLLINT=/usr/bin/xmllint \
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] openvswitch: add missing inherit
  2013-12-18 20:42 [PATCH 1/2] openvswitch: add missing inherit Mark Asselstine
  2013-12-18 20:42 ` [PATCH] libvirt: " Mark Asselstine
@ 2013-12-18 21:16 ` Bruce Ashfield
  1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2013-12-18 21:16 UTC (permalink / raw)
  To: Mark Asselstine; +Cc: meta-virtualization

On 13-12-18 03:42 PM, Mark Asselstine wrote:
> openvswitch requires pkgconfig or you may see an error:
>
> configure.ac:53: error: Please install pkg-config.
>
> during configure.
>
> Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
> ---
> Bruce,
>
> Here is another set of commits to fix potential build issues, usually
> encountered while building out of sstate. Sorry for not grouping these
> with my recent lxc commit, I pulled the trigger too quickly.

merged all three.

Bruce

>
> Mark
>
>
>   recipes-networking/openvswitch/openvswitch_1.10.0.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-networking/openvswitch/openvswitch_1.10.0.bb b/recipes-networking/openvswitch/openvswitch_1.10.0.bb
> index 02c8ab3..931beb8 100644
> --- a/recipes-networking/openvswitch/openvswitch_1.10.0.bb
> +++ b/recipes-networking/openvswitch/openvswitch_1.10.0.bb
> @@ -59,7 +59,7 @@ FILES_${PN}-switch = "${sysconfdir}/init.d/openvswitch-switch \
>   FILES_${PN} += "${datadir}/ovsdbmonitor"
>   FILES_${PN} += "/run"
>
> -inherit autotools update-rc.d
> +inherit autotools update-rc.d pkgconfig
>
>   INITSCRIPT_PACKAGES = "${PN}-switch ${PN}-controller"
>   INITSCRIPT_NAME_${PN}-switch = "openvswitch-switch"
>



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-12-18 21:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-18 20:42 [PATCH 1/2] openvswitch: add missing inherit Mark Asselstine
2013-12-18 20:42 ` [PATCH] libvirt: " Mark Asselstine
2013-12-18 21:16 ` [PATCH 1/2] openvswitch: " Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.