From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: D-Bus integration into Emacs Date: Sun, 02 Dec 2007 22:45:43 +0200 Message-ID: References: <874pf6ypv8.fsf@gmx.de> <87prxp57la.fsf@gmx.de> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1196628364 6909 80.91.229.12 (2 Dec 2007 20:46:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 2 Dec 2007 20:46:04 +0000 (UTC) Cc: emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Dec 02 21:46:13 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 1IyvhY-0005F4-Rx for ged-emacs-devel@m.gmane.org; Sun, 02 Dec 2007 21:46:09 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IyvhI-00014U-Bo for ged-emacs-devel@m.gmane.org; Sun, 02 Dec 2007 15:45:52 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IyvhD-00010G-Qg for emacs-devel@gnu.org; Sun, 02 Dec 2007 15:45:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IyvhB-0000vk-TS for emacs-devel@gnu.org; Sun, 02 Dec 2007 15:45:47 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IyvhB-0000vE-OB for emacs-devel@gnu.org; Sun, 02 Dec 2007 15:45:45 -0500 Original-Received: from heller.inter.net.il ([213.8.233.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IyvhB-0000Sa-Go for emacs-devel@gnu.org; Sun, 02 Dec 2007 15:45:45 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-84-228-164-89.inter.net.il [84.228.164.89]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id EGP72880 (AUTH halo1); Sun, 2 Dec 2007 22:45:41 +0200 (IST) In-reply-to: <87prxp57la.fsf@gmx.de> (message from Michael Albinus on Sun, 02 Dec 2007 18:28:49 +0100) X-detected-kernel: by monty-python.gnu.org: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) 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:84500 Archived-At: > From: Michael Albinus > Date: Sun, 02 Dec 2007 18:28:49 +0100 > > I've committed the files to the trunk. Thanks. However, this part of your changes: RCS file: /sources/emacs/emacs/doc/misc/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- Makefile.in 23 Nov 2007 19:38:49 -0000 1.4 +++ Makefile.in 2 Dec 2007 16:56:53 -0000 1.5 @@ -79,6 +79,10 @@ $(infodir)/widget \ $(infodir)/woman +ifeq (@DBUS_INFO@, dbus) + INFO_TARGETS += $(infodir)/dbus +endif + DVI_TARGETS = \ ada-mode.dvi \ autotype.dvi \ @@ -120,6 +124,10 @@ widget.dvi \ woman.dvi +ifeq (@DBUS_INFO@, dbus) + DVI_TARGETS += dbus.dvi +endif + TEXI2DVI = texi2dvi needs to be redone: ifeq is a GNU Make feature, and I don't think we want to require GNU Make for building Emacs. I think the easiest way to do this portably is use a shell feature of some sort. Or just generate info/dbus and dbus.dvi unconditionally (it cannot hurt).