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 2DE1CDC06AF for ; Sun, 24 May 2015 15:42:04 +0000 (UTC) Received: from port70.net (port70.net [81.7.13.123]) by mail.alpinelinux.org (Postfix) with ESMTP id E03F2DC00FE for ; Sun, 24 May 2015 15:41:58 +0000 (UTC) Received: by port70.net (Postfix, from userid 1002) id 1647665C005; Sun, 24 May 2015 17:41:56 +0200 (CEST) Date: Sun, 24 May 2015 17:41:56 +0200 From: Szabolcs Nagy To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] build xorg-server without dbus Message-ID: <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: multipart/mixed; boundary="pWyiEgJYm5f9v55/" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-Virus-Scanned: ClamAV using ClamSMTP --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 --pWyiEgJYm5f9v55/ Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="xorg-server-no-dbus.diff" 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 --pWyiEgJYm5f9v55/-- --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---