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 09551DC08C6; Mon, 3 Aug 2015 14:09:57 +0000 (UTC) Received: from ncopa-desktop.alpinelinux.org (unknown [79.160.13.133]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mail.alpinelinux.org (Postfix) with ESMTPSA id 3F26EDC00D9; Mon, 3 Aug 2015 14:09:55 +0000 (UTC) Date: Mon, 3 Aug 2015 16:09:48 +0200 From: Natanael Copa To: Szabolcs Nagy Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] Re: [PATCH] build xorg-server without dbus Message-ID: <20150803160948.198dae9c@ncopa-desktop.alpinelinux.org> In-Reply-To: <20150803132713.GB4406@port70.net> References: <20150524154156.GB26188@port70.net> <20150803132713.GB4406@port70.net> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-alpine-linux-musl) 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-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP On Mon, 3 Aug 2015 15:27:13 +0200 Szabolcs Nagy wrote: > * 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 Sorry. I thought this was applied already. > i've seen other ppl running into this. > > i think there is no loss of functionality without dbus. commit e407b99757d2de626285db2da8692c7c883d6436 (Sun May 24 17:58:47 2015 -0400, main/xorg-xserver: disable systemd features) should disable systemd already. I have applied the removal of dbus-dev and dbus-x11 deps now. Thanks -nc > > > 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 > --- > --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---