Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] meta: fixes dbus-native and cups
@ 2014-05-27  1:39 Robert Yang
  2014-05-27  1:39 ` [PATCH 1/2] dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10 Robert Yang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Robert Yang @ 2014-05-27  1:39 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 894df445fa71a170397c6e0b4960a89ef20a4230:

  guile: Update to 2.0.11 version (2014-05-21 19:50:21 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib rbt/twofixes
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=rbt/twofixes

Robert Yang (2):
  dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10
  cups: enable cups-str4402.patch

 meta/recipes-core/dbus/dbus.inc     |    2 ++
 meta/recipes-extended/cups/cups.inc |    1 +
 2 files changed, 3 insertions(+)

-- 
1.7.10.4



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

* [PATCH 1/2] dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10
  2014-05-27  1:39 [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang
@ 2014-05-27  1:39 ` Robert Yang
  2014-05-27  1:39 ` [PATCH 2/2] cups: enable cups-str4402.patch Robert Yang
  2014-06-16 13:43 ` [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang
  2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2014-05-27  1:39 UTC (permalink / raw)
  To: openembedded-core

Found this error on CentOS 5.10, other distros may also has this
problem, I think that we can disable the selinux for dbus-native:

bus/selinux.c:327: error: array type has incomplete element type

[YOCTO #6374]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-core/dbus/dbus.inc |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index b3d3834..33f2f22 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -85,6 +85,8 @@ EXTRA_OECONF = "--disable-tests \
                 --disable-libaudit \
                 --disable-systemd"
 
+EXTRA_OECONF_class-native = "--disable-selinux"
+
 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \
                    ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}"
 PACKAGECONFIG_class-native = ""
-- 
1.7.10.4



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

* [PATCH 2/2] cups: enable cups-str4402.patch
  2014-05-27  1:39 [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang
  2014-05-27  1:39 ` [PATCH 1/2] dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10 Robert Yang
@ 2014-05-27  1:39 ` Robert Yang
  2014-06-16 13:43 ` [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang
  2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2014-05-27  1:39 UTC (permalink / raw)
  To: openembedded-core

This patch is used for fixing build errors without dnssd/avahi, we
already have this patch, but isn't added to SRC_URI:
meta/recipes-extended/cups/cups/cups-str4402.patch

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/cups/cups.inc |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc
index fd88552..bbfd1ef 100644
--- a/meta/recipes-extended/cups/cups.inc
+++ b/meta/recipes-extended/cups/cups.inc
@@ -8,6 +8,7 @@ SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \
            file://use_echo_only_in_init.patch \
            file://0001-don-t-try-to-run-generated-binaries.patch \
            file://cups_serverbin.patch \
+           file://cups-str4402.patch \
 	  "
 
 LEAD_SONAME = "libcupsdriver.so"
-- 
1.7.10.4



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

* Re: [PATCH 0/2] meta: fixes dbus-native and cups
  2014-05-27  1:39 [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang
  2014-05-27  1:39 ` [PATCH 1/2] dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10 Robert Yang
  2014-05-27  1:39 ` [PATCH 2/2] cups: enable cups-str4402.patch Robert Yang
@ 2014-06-16 13:43 ` Robert Yang
  2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2014-06-16 13:43 UTC (permalink / raw)
  To: openembedded-core


Ping.

// Robert

On 05/27/2014 09:39 AM, Robert Yang wrote:
> The following changes since commit 894df445fa71a170397c6e0b4960a89ef20a4230:
>
>    guile: Update to 2.0.11 version (2014-05-21 19:50:21 +0100)
>
> are available in the git repository at:
>
>    git://git.pokylinux.org/poky-contrib rbt/twofixes
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=rbt/twofixes
>
> Robert Yang (2):
>    dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10
>    cups: enable cups-str4402.patch
>
>   meta/recipes-core/dbus/dbus.inc     |    2 ++
>   meta/recipes-extended/cups/cups.inc |    1 +
>   2 files changed, 3 insertions(+)
>


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

end of thread, other threads:[~2014-06-16 13:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-27  1:39 [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang
2014-05-27  1:39 ` [PATCH 1/2] dbus-native: dbus-native: do_compile failed on selinux.c on CentOS 5.10 Robert Yang
2014-05-27  1:39 ` [PATCH 2/2] cups: enable cups-str4402.patch Robert Yang
2014-06-16 13:43 ` [PATCH 0/2] meta: fixes dbus-native and cups Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox