diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2007-08-15 21:06:42 +0000 |
---|---|---|
committer | Philipp Zabel <philipp.zabel@gmail.com> | 2007-08-15 21:06:42 +0000 |
commit | f4cfe8c0ebc9ae2af5416b608179feae63e2e5bc (patch) | |
tree | b29e579042cc3dd22d7156fb1bfa9a4765cc1b50 /packages/avahi/files | |
parent | 8d52c11433167022f744e17dc6b5083542555bd5 (diff) |
avahi: add 0.6.21
Diffstat (limited to 'packages/avahi/files')
-rw-r--r-- | packages/avahi/files/dbus-pre-1.1.1-support.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/avahi/files/dbus-pre-1.1.1-support.patch b/packages/avahi/files/dbus-pre-1.1.1-support.patch new file mode 100644 index 0000000000..a92fb82710 --- /dev/null +++ b/packages/avahi/files/dbus-pre-1.1.1-support.patch @@ -0,0 +1,17 @@ +http://avahi.org/changeset/1518 + +Index: trunk/avahi-common/dbus-watch-glue.c +=================================================================== +--- trunk/avahi-common/dbus-watch-glue.c (revision 1507) ++++ trunk/avahi-common/dbus-watch-glue.c (revision 1518) +@@ -135,5 +135,9 @@ + if (!(avahi_watch = poll_api->watch_new( + poll_api, ++#if (DBUS_VERSION_MAJOR == 1 && DBUS_VERSION_MINOR == 1 && DBUS_VERSION_MICRO >= 1) || (DBUS_VERSION_MAJOR == 1 && DBUS_VERSION_MAJOR > 1) || (DBUS_VERSION_MAJOR > 1) + dbus_watch_get_unix_fd(dbus_watch), ++#else ++ dbus_watch_get_fd(dbus_watch), ++#endif + translate_dbus_to_avahi(dbus_watch_get_flags(dbus_watch)), + watch_callback, + |