X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 21047DC00D9 for ; Mon, 3 Aug 2015 13:27:16 +0000 (UTC) Received: from port70.net (port70.net [81.7.13.123]) by mail.alpinelinux.org (Postfix) with ESMTP id D6D82DC00B8 for ; Mon, 3 Aug 2015 13:27:15 +0000 (UTC) Received: by port70.net (Postfix, from userid 1002) id DCC8DABEC06D; Mon, 3 Aug 2015 15:27:13 +0200 (CEST) Date: Mon, 3 Aug 2015 15:27:13 +0200 From: Szabolcs Nagy To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] Re: [PATCH] build xorg-server without dbus Message-ID: <20150803132713.GB4406@port70.net> References: <20150524154156.GB26188@port70.net> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150524154156.GB26188@port70.net> User-Agent: Mutt/1.5.23 (2014-03-12) X-Virus-Scanned: ClamAV using ClamSMTP * Szabolcs Nagy [2015-05-24 17:41:56 +0200]: > dbus seems to be an accidental build dependency of > xorg-server > > if systemd-logind support is not explicitly disabled > and dbus is available then xorg will enable logind > support and dbus > > this causes a useless connection to the dbus system > bus on xorg startup (only hal and logind would use it) > and if there is no dbus running on the system then > the Xorg.log gets filled with > > (EE) dbus-core: error connecting to system bus: org.freedesktop.DBus.Error.FileNotFound (Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory) > > every 10 seconds.. > > so i rebuilt my xorg-server package with the attached > patch ping i've seen other ppl running into this. i think there is no loss of functionality without dbus. > diff --git a/main/xorg-server/APKBUILD b/main/xorg-server/APKBUILD > index 9d86472..8cf3198 100644 > --- a/main/xorg-server/APKBUILD > +++ b/main/xorg-server/APKBUILD > @@ -18,7 +18,6 @@ depends=" > xkeyboard-config > xkbcomp > xinit > - dbus-x11 > " > depends_dev=" > bigreqsproto > @@ -51,7 +50,6 @@ makedepends=" > $depends_dev > autoconf > automake > - dbus-dev > libdrm-dev > libtool > libx11-dev > @@ -134,6 +132,7 @@ build() { > --enable-xephyr \ > --disable-config-hal \ > --disable-dmx \ > + --disable-systemd-logind \ > --disable-tslib \ > --enable-config-udev \ > || return 1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---