From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-15?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: D-Bus integration into Emacs Date: Tue, 04 Dec 2007 08:35:20 +0100 Message-ID: <47550338.7010809@swipnet.se> References: <874pf6ypv8.fsf@gmx.de> <87prxp57la.fsf@gmx.de> <87d4to5ux0.fsf@freemail.hu> <4753AC5E.9030009@swipnet.se> <87bq97lala.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1196753776 11377 80.91.229.12 (4 Dec 2007 07:36:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 4 Dec 2007 07:36:16 +0000 (UTC) Cc: Magnus Henoch , emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 04 08:36:25 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IzSKN-0004Rh-21 for ged-emacs-devel@m.gmane.org; Tue, 04 Dec 2007 08:36:23 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IzSK4-00020j-ES for ged-emacs-devel@m.gmane.org; Tue, 04 Dec 2007 02:36:04 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IzSK0-0001z0-L0 for emacs-devel@gnu.org; Tue, 04 Dec 2007 02:36:00 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IzSJz-0001x0-3T for emacs-devel@gnu.org; Tue, 04 Dec 2007 02:36:00 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IzSJy-0001wq-RL for emacs-devel@gnu.org; Tue, 04 Dec 2007 02:35:58 -0500 Original-Received: from av8-2-sn3.vrr.skanova.net ([81.228.9.184]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IzSJy-0004no-IU for emacs-devel@gnu.org; Tue, 04 Dec 2007 02:35:58 -0500 Original-Received: by av8-2-sn3.vrr.skanova.net (Postfix, from userid 502) id 045DB37F48; Tue, 4 Dec 2007 08:35:56 +0100 (CET) Original-Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av8-2-sn3.vrr.skanova.net (Postfix) with ESMTP id B6DA137F3D; Tue, 4 Dec 2007 08:35:56 +0100 (CET) Original-Received: from husetbladh.homeip.net (90-231-102-24-no59.tbcn.telia.com [90.231.102.24]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 94CFE37E4C; Tue, 4 Dec 2007 08:35:56 +0100 (CET) User-Agent: Thunderbird 2.0.0.9 (X11/20071031) In-Reply-To: <87bq97lala.fsf@gmx.de> X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:84636 Archived-At: Michael Albinus skrev: > Jan Dj=E4rv writes: >=20 >>> It doesn't compiler under NetBSD, as D-Bus is installed under /usr/pk= g >>> instead of /usr. How about this patch? It makes configure use >>> pkg-config to find the proper compiler and linker flags. >> You should make that something like: >> >> PKG_CHECK_MODULES(DBUS, dbus-1 >=3D 1.1, HAVE_DBUS=3Dyes, HAVE_DBUS=3D= no) >> >> or whatever version is required (FWIW, I have dbus in /opt on some mac= hines). >=20 > PKG_CHECK_MODULES(DBUS, dbus-1 >=3D 1.0, HAVE_DBUS=3Dyes, HAVE_DB= US=3Dno) >=20 > seems to fit best. I've developped with D-Bus 1.0, and this is the > stable version distributed since Nov 2006. >=20 > D-Bus 1.1 is a developer version. D-Bus 1.2, the next stable version, i= s > expected to be released soon. Its new features shall be visible as > subfeatures of dbus.el, still providing backwards compatibility to D-Bu= s 1.0. >=20 Okay. I just looked at what I had in front of me (Fedora 8) and that was= =20 1.1.2. So they ship a development version, didn't expect that. Jan D.