[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: D-Bus integration into Emacs
From: |
Eli Zaretskii |
Subject: |
Re: D-Bus integration into Emacs |
Date: |
Sun, 02 Dec 2007 22:45:43 +0200 |
> From: Michael Albinus <address@hidden>
> 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).