From dd72daef5fd9b6660e8b9093607b4aea09ec643f Mon Sep 17 00:00:00 2001 From: Graham Gower Date: Thu, 6 Aug 2009 15:26:21 +0000 Subject: dbus: fix dbus-daemon segfault on mipsel with recent toolchain dbus-daemon segfaults on mipsel when built with -fPIE/-pie, as outlined in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=532821 Removes PIE compilation from the dbus-daemon Makefile as a workaround. Signed-off-by: Graham Gower Acked-by: Khem Raj Signed-off-by: Holger Freyther --- recipes/dbus/dbus.inc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'recipes/dbus/dbus.inc') diff --git a/recipes/dbus/dbus.inc b/recipes/dbus/dbus.inc index 0302cfe776..b5eeb08629 100644 --- a/recipes/dbus/dbus.inc +++ b/recipes/dbus/dbus.inc @@ -4,6 +4,8 @@ SECTION = "base" LICENSE = "GPL" DEPENDS = "expat glib-2.0 virtual/libintl libsm libice virtual/libx11" +INC_PR = "r16" + SRC_URI = "\ http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ file://cross.patch;patch=1 \ @@ -30,6 +32,10 @@ EXTRA_OECONF = "\ --with-dbus-default-reply-timeout=200000 \ " +do_compile_prepend_mipsel() { + sed -i -e 's/\-fPIE//' -e 's/\-pie\ \-Wl\,\-z\,relro//' bus/Makefile +} + do_install_append() { install -d ${D}${sysconfdir}/init.d install -m 0755 ${WORKDIR}/dbus-1.init ${D}${sysconfdir}/init.d/dbus-1 -- cgit 1.2.3-korg