summaryrefslogtreecommitdiff
path: root/sysutils/dbus/patches
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2006-08-23 09:44:27 +0000
committerjmmv <jmmv@pkgsrc.org>2006-08-23 09:44:27 +0000
commit48034db38e857a52c83a8793507fe3cf99929da8 (patch)
tree6a5af23cd398c26a11bd3232ebb19cd854a3bb64 /sysutils/dbus/patches
parent3daacf40d6e662b729f78ffe90d98f11331b0b4f (diff)
downloadpkgsrc-48034db38e857a52c83a8793507fe3cf99929da8.tar.gz
Update to 0.91:
D-Bus 0.91 (24 July 2006) == - Remove some lingering bits left over from the bindings split - Fix assertion causing D-Bus applications to crash when checks are enabled - Fix a timeout bug which would block applications from being auto started D-Bus 0.90 (17 July 2006) == - API/ABI freeze for 1.0 - Bindings are now split out into seperate packages - ListActivatableNames added as a method on the bus - Removed deprecated dbus_connection_disconnect (use dbus_connection_close) - Shared connections are now unreffed on disconnect - Fixed pending calls for threaded enviornments - Pending calls get timed out on connection disconnect - dbus_connection_send_with_reply returns TRUE and a NULL pending call if you call it on a connection object which has been disconnected already (it returns FALSE on Out of Memory errors only) - dbus-monitor now correctly catches methods, not just signals - dbus-monitor now prints object paths D-BUS 0.62 (12 June 2006) == - Doc fixes - Added support for all data-types for the dbus tools - Fixed eavesdropping on method calls (dbus-monitor) - Fixed silent dropping of method calls with interface=NULL - Fixed console ownership problems in Solaris - Fixed installation of dbus-signature.h and #include it in dbus/dbus.h - Flush the user database cache on config reload - GLib bindings: - Fix memory leaks - Fix properties in DBusGProxy so that they can be given in any order - Added lots of assertions to ensure correct use - Remove duplicated code - Fix static string pointer uses in GPtrArray-based collections - Python bindings: - Remove reference to sys/cdefs.h - Qt4 bindings: - Code reorganized - Added the dbusidl2cpp, dbuscpp2xml and dbus tools - Added example programs (ping-pong, complex ping-pong, listnames, chat) - Updated selftests - Fixed compilation and .moc- and .ui-file processing and cleaning - Made central classes derive from QObject - Enhance error reporting - Many bugfixes - Mono bindings: - Minor bugfixes
Diffstat (limited to 'sysutils/dbus/patches')
-rw-r--r--sysutils/dbus/patches/patch-ab13
-rw-r--r--sysutils/dbus/patches/patch-ad16
2 files changed, 0 insertions, 29 deletions
diff --git a/sysutils/dbus/patches/patch-ab b/sysutils/dbus/patches/patch-ab
deleted file mode 100644
index 6d98f97ebb4..00000000000
--- a/sysutils/dbus/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2006/03/30 20:57:08 jmmv Exp $
-
---- tools/Makefile.in.orig 2006-02-24 17:36:59.000000000 +0100
-+++ tools/Makefile.in
-@@ -395,7 +395,7 @@ dbus_send_LDADD = $(top_builddir)/dbus/l
- dbus_monitor_LDADD = $(top_builddir)/glib/libdbus-glib-1.la
- dbus_launch_LDADD = $(DBUS_X_LIBS)
- dbus_viewer_LDADD = $(top_builddir)/glib/libdbus-gtool.la $(DBUS_GTK_THREADS_LIBS) $(DBUS_GLIB_TOOL_LIBS)
--man_MANS = dbus-send.1 dbus-monitor.1 dbus-launch.1 dbus-cleanup-sockets.1
-+man_MANS = dbus-send.1 dbus-launch.1 dbus-cleanup-sockets.1
- EXTRA_DIST = $(man_MANS) run-with-tmp-session-bus.sh
- CLEANFILES = \
- run-with-tmp-session-bus.conf \
diff --git a/sysutils/dbus/patches/patch-ad b/sysutils/dbus/patches/patch-ad
deleted file mode 100644
index 6833dd0f8a4..00000000000
--- a/sysutils/dbus/patches/patch-ad
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2006/02/26 21:42:33 joerg Exp $
-
---- python/extract.py.orig 2006-02-18 14:40:04.000000000 +0000
-+++ python/extract.py
-@@ -228,7 +228,10 @@ fd = open(filename)
- for line in fd.readlines():
- if line.startswith('#include'):
- filename = line.split(' ')[1][1:-2]
-- command = "echo '%s'|cpp %s" % (line, cppflags)
-+ if sys.platform[:-1] in ("freebsd", "dragonfly"):
-+ command = "echo '%s'|cpp -Dlint %s" % (line, cppflags)
-+ else:
-+ command = "echo '%s'|cpp %s" % (line, cppflags)
- sys.stderr.write('running %s' % (command))
- output = commands.getoutput(command)
- do_buffer(filename, output)