From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: D-Bus integration into Emacs Date: Mon, 03 Dec 2007 08:12:30 +0100 Message-ID: <4753AC5E.9030009@swipnet.se> References: <874pf6ypv8.fsf@gmx.de> <87prxp57la.fsf@gmx.de> <87d4to5ux0.fsf@freemail.hu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1196666035 31861 80.91.229.12 (3 Dec 2007 07:13:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 3 Dec 2007 07:13:55 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 03 08:14:04 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 1Iz5VB-0000zX-1M for ged-emacs-devel@m.gmane.org; Mon, 03 Dec 2007 08:14:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iz5Uu-0006Jw-9U for ged-emacs-devel@m.gmane.org; Mon, 03 Dec 2007 02:13:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iz5Um-0006IT-Uq for emacs-devel@gnu.org; Mon, 03 Dec 2007 02:13:36 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iz5Ui-0006Fq-6i for emacs-devel@gnu.org; Mon, 03 Dec 2007 02:13:36 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iz5Uh-0006Ff-Qp for emacs-devel@gnu.org; Mon, 03 Dec 2007 02:13:31 -0500 Original-Received: from av9-2-sn2.hy.skanova.net ([81.228.8.180]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Iz5Uh-0000JU-GG for emacs-devel@gnu.org; Mon, 03 Dec 2007 02:13:31 -0500 Original-Received: by av9-2-sn2.hy.skanova.net (Postfix, from userid 502) id 2D4AE380FB; Mon, 3 Dec 2007 08:13:29 +0100 (CET) Original-Received: from smtp4-2-sn2.hy.skanova.net (smtp4-2-sn2.hy.skanova.net [81.228.8.93]) by av9-2-sn2.hy.skanova.net (Postfix) with ESMTP id CDB8937FF9 for ; Mon, 3 Dec 2007 08:13:28 +0100 (CET) Original-Received: from husetbladh.homeip.net (90-231-102-24-no59.tbcn.telia.com [90.231.102.24]) by smtp4-2-sn2.hy.skanova.net (Postfix) with ESMTP id BB51537E4C for ; Mon, 3 Dec 2007 08:13:28 +0100 (CET) User-Agent: Thunderbird 2.0.0.9 (X11/20071031) In-Reply-To: <87d4to5ux0.fsf@freemail.hu> 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:84542 Archived-At: Magnus Henoch skrev: > Michael Albinus writes: > >> I've committed the files to the trunk. In order to activate D-Bus >> integration, one must apply "./configure --with-dbus". It's tested under >> GNU/Linux only, but there seem to exist D-Bus implementations for Mac OS >> X and Win32 as well. > > It doesn't compiler under NetBSD, as D-Bus is installed under /usr/pkg > 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 >= 1.1, HAVE_DBUS=yes, HAVE_DBUS=no) or whatever version is required (FWIW, I have dbus in /opt on some machines). BTW, does anybody know why we have AC_INIT(src/lisp.h) at the begining of configure.in? The documentation says: AC_INIT (PACKAGE, VERSION, [BUG-REPORT], [TARNAME]) Jan D.