Re: [OE-core] [PATCHv2 2/3] distcc_2.18.3.bb: Fix compilation on uclibc

2011-05-20 Thread Richard Purdie
On Thu, 2011-05-19 at 17:02 -0700, Khem Raj wrote: > We enable gtk/gnome in distcc that code uses loadavg() > a function unimplemented in uclibc. Therefore for uclibc > we disable gnome and gtk+ features in distcc > > Signed-off-by: Khem Raj > --- > meta/recipes-devtools/distcc/distcc_2.18.3.bb

Re: [OE-core] [PATCHv2 2/3] distcc_2.18.3.bb: Fix compilation on uclibc

2011-05-20 Thread Phil Blundell
On Thu, 2011-05-19 at 17:02 -0700, Khem Raj wrote: > -DEPENDS = "avahi gtk+" > +DEPENDS = "avahi" > +DEPENDS_append-libc-glibc = " gtk+ " If uclibc is alone in not having this function then it would be better as: gtkdepends = "gtk+" gtkdepends_libc-uclibc = "" DEPENDS = "avahi ${gtkdepends}" or

[OE-core] [PATCHv2 2/3] distcc_2.18.3.bb: Fix compilation on uclibc

2011-05-19 Thread Khem Raj
We enable gtk/gnome in distcc that code uses loadavg() a function unimplemented in uclibc. Therefore for uclibc we disable gnome and gtk+ features in distcc Signed-off-by: Khem Raj --- meta/recipes-devtools/distcc/distcc_2.18.3.bb | 15 ++- 1 files changed, 10 insertions(+), 5 dele