diff -urN dbus-1.6.12.old/doc/dbus-launch.1 dbus-1.6.12/doc/dbus-launch.1
--- dbus-1.6.12.old/doc/dbus-launch.1 2012-08-13 19:08:25.000000000 +0100
+++ dbus-1.6.12/doc/dbus-launch.1 2015-05-29 13:32:50.450058799 +0100
@@ -7,7 +7,7 @@
dbus\-launch \- Utility to start a message bus from a shell script
.SH SYNOPSIS
.PP
-.B dbus\-launch [\-\-version] [\-\-sh\-syntax] [\-\-csh\-syntax] [\-\-auto\-syntax] [\-\-exit\-with\-session] [\-\-autolaunch=MACHINEID] [\-\-config\-file=FILENAME] [PROGRAM] [ARGS...]
+.B dbus\-launch [\-\-version] [\-\-help] [\-\-sh\-syntax] [\-\-csh\-syntax] [\-\-auto\-syntax] [\-\-binary\-syntax] [\-\-close\-stderr] [\-\-exit\-with\-session] [\-\-autolaunch=MACHINEID] [\-\-config\-file=FILENAME] [PROGRAM] [ARGS...]
.SH DESCRIPTION
@@ -190,6 +190,10 @@
.I "\-\-version"
Print the version of dbus\-launch
+.TP
+.I "\-\-help"
+Print the help info of dbus\-launch
+
.SH NOTES
If you run
diff -urN dbus-1.6.12.old/doc/dbus-send.1 dbus-1.6.12/doc/dbus-send.1
--- dbus-1.6.12.old/doc/dbus-send.1 2012-06-06 11:45:55.000000000 +0100
+++ dbus-1.6.12/doc/dbus-send.1 2015-05-29 13:21:58.335924252 +0100
@@ -8,7 +8,8 @@
.SH SYNOPSIS
.PP
.B dbus\-send
-[\fB\-\-system\fP | \fB\-\-session\fP]
+[\fB\-\-help\fP]
+[\fB\-\-system\fP | \fB\-\-session\fP | \fB\-\-address=\fIADDRESS\fP]
[\fB\-\-dest=\fINAME\fP]
[\fB\-\-print\-reply\fP[\fB=literal\fP]]
[\fB\-\-reply\-timeout=\fIMSEC\fP]
@@ -98,8 +99,14 @@
.B "\-\-session"
Send to the session message bus. (This is the default.)
.TP
+.BI \-\-address= ADDRESS
+Send to \fIADDRESS\fP.
+.TP
.BI \-\-type= TYPE
Specify \fBmethod_call\fP or \fBsignal\fP (defaults to "\fBsignal\fP").
+.TP
+.B "\-\-help"
+Print the help info of dbus\-send.
.SH AUTHOR
dbus\-send was written by Philip Blundell.
diff -urN dbus-1.6.12.old/tools/dbus-launch.c dbus-1.6.12/tools/dbus-launch.c
--- dbus-1.6.12.old/tools/dbus-launch.c 2013-06-12 13:55:29.000000000 +0100
+++ dbus-1.6.12/tools/dbus-launch.c 2015-05-29 13:36:25.645035413 +0100
@@ -181,7 +181,10 @@
static void
usage (int ecode)
{
- fprintf (stderr, "dbus-launch [--version] [--help] [--sh-syntax] [--csh-syntax] [--auto-syntax] [--exit-with-session]\n");
+ fprintf (stderr, "dbus-launch [--version] [--help] [--sh-syntax]"
+ " [--csh-syntax] [--auto-syntax] [--binary-syntax] [--close-stderr]"
+ " [--exit-with-session] [--autolaunch=MACHINEID]"
+ " [--config-file=FILENAME] [PROGRAM] [ARGS...]\n");
exit (ecode);
}