summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2012-06-27 18:22:18 +0100
committerSimon McVittie <smcv@debian.org>2012-06-27 18:22:18 +0100
commit34ef44125d1a6843b6cd7d36d93cc02e8c8f5e1a (patch)
tree9313ad538105fb852f13a9613f626bf0727338cd
parent6fe3cc8145cbd4e5a2874870e45fba5be311d639 (diff)
downloaddbus-34ef44125d1a6843b6cd7d36d93cc02e8c8f5e1a.tar.gz
New upstream stable release
* New upstream stable release - dbus-launch --exit-with-session no longer monitors its stdin if run under X11 (Closes: #453755) * Remove the workaround for #453755 from dbus-Xsession
-rw-r--r--debian/changelog9
-rw-r--r--debian/dbus-Xsession14
2 files changed, 9 insertions, 14 deletions
diff --git a/debian/changelog b/debian/changelog
index 322548e4..596d1d4f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+dbus (1.6.2-1) UNRELEASED; urgency=low
+
+ * New upstream stable release
+ - dbus-launch --exit-with-session no longer monitors its stdin if
+ run under X11 (Closes: #453755)
+ * Remove the workaround for #453755 from dbus-Xsession
+
+ -- Simon McVittie <smcv@debian.org> Wed, 27 Jun 2012 17:57:46 +0100
+
dbus (1.6.0-1) unstable; urgency=low
* Merge from "experimental" (1.5.12 was accidentally uploaded to unstable)
diff --git a/debian/dbus-Xsession b/debian/dbus-Xsession
index 14390231..af7ba492 100644
--- a/debian/dbus-Xsession
+++ b/debian/dbus-Xsession
@@ -13,19 +13,5 @@ if has_option use-session-dbus; then
fi
if [ -n "$STARTDBUS" ]; then
- # dbus-launch misbehaves when stdin is a console:
- # - http://bugs.debian.org/453755
- # - https://bugs.freedesktop.org/show_bug.cgi?id=39197
- #
- # While we sort out with upstream what the right solution is,
- # work around it by ensuring that stdin is not a console (this is a no-op
- # on xdm and gdm, but not on startx, slim, nodm).
- #
- # It isn't really D-Bus' place to do this - we're changing the environment
- # of everything executed from Xsession.d, not just dbus-launch - but having
- # X apps whose stdin is the console makes very little sense, so arguably
- # startx, slim, nodm etc. should be doing this themselves.
- exec < /dev/null
-
STARTUP="$DBUSLAUNCH --exit-with-session $STARTUP"
fi