[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r108540: * configure.in (dbus_type_is
From: |
Michael Albinus |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r108540: * configure.in (dbus_type_is_valid): Check for library function. |
Date: |
Sat, 09 Jun 2012 13:12:12 +0200 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 108540
committer: Michael Albinus <address@hidden>
branch nick: trunk
timestamp: Sat 2012-06-09 13:12:12 +0200
message:
* configure.in (dbus_type_is_valid): Check for library function.
modified:
ChangeLog
autogen/config.in
configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-06-06 01:06:54 +0000
+++ b/ChangeLog 2012-06-09 11:12:12 +0000
@@ -1,3 +1,7 @@
+2012-06-09 Michael Albinus <address@hidden>
+
+ * configure.in (dbus_type_is_valid): Check for library function.
+
2012-06-06 Glenn Morris <address@hidden>
* INSTALL, make-dist: Remove vcdiff.
@@ -409,7 +413,7 @@
* configure.in (dbus_validate_bus_name, dbus_validate_path)
(dbus_validate_interface, dbus_validate_member): Check also for
- these library functions
+ these library functions.
2012-04-22 Paul Eggert <address@hidden>
=== modified file 'autogen/config.in'
--- a/autogen/config.in 2012-05-28 10:17:28 +0000
+++ b/autogen/config.in 2012-06-09 11:12:12 +0000
@@ -145,6 +145,9 @@
/* Define to 1 if using D-Bus. */
#undef HAVE_DBUS
+/* Define to 1 if you have the `dbus_type_is_valid' function. */
+#undef HAVE_DBUS_TYPE_IS_VALID
+
/* Define to 1 if you have the `dbus_validate_bus_name' function. */
#undef HAVE_DBUS_VALIDATE_BUS_NAME
@@ -1407,4 +1410,3 @@
mode: c
End:
*/
-
=== modified file 'configure.in'
--- a/configure.in 2012-06-03 23:14:22 +0000
+++ b/configure.in 2012-06-09 11:12:12 +0000
@@ -1950,8 +1950,10 @@
LIBS="$LIBS $DBUS_LIBS"
AC_DEFINE(HAVE_DBUS, 1, [Define to 1 if using D-Bus.])
dnl dbus_watch_get_unix_fd has been introduced in D-Bus 1.1.1.
- dnl dbus_validate_* have been introduced in D-Bus 1.5.12.
+ dnl dbus_type_is_valid and dbus_validate_* have been introduced in
+ dnl D-Bus 1.5.12.
AC_CHECK_FUNCS(dbus_watch_get_unix_fd \
+ dbus_type_is_valid \
dbus_validate_bus_name \
dbus_validate_path \
dbus_validate_interface \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r108540: * configure.in (dbus_type_is_valid): Check for library function.,
Michael Albinus <=