Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Weblate
gajim
Commits
2dec19d3
Commit
2dec19d3
authored
16 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
test if dbus0x11 is installed before using dbus. Fixes
#4715
parent
2804251d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.html
+2
-2
2 additions, 2 deletions
README.html
src/common/dbus_support.py
+2
-0
2 additions, 0 deletions
src/common/dbus_support.py
src/gajim-remote.py
+2
-0
2 additions, 0 deletions
src/gajim-remote.py
with
6 additions
and
2 deletions
README.html
+
2
−
2
View file @
2dec19d3
...
...
@@ -32,12 +32,12 @@ Gajim is a GTK+ app that loves GNOME. You can do 'make' so you don't require gno
<li>
python-crypto to enable End to end encryption
</li>
<li>
For idle module, libxss library
</li>
<li>
For zeroconf (bonjour), the "enable link-local messaging" checkbox, you need dbus-glib, python-avahi
</li>
<li>
dnsutils (or whatever package provides the nslookup binary) for SRV support
; if you don't know what that is, you don't need it
</li>
<li>
dnsutils (or whatever package provides the nslookup binary) for SRV support
</li>
<li>
gtkspell and aspell-LANG where lang is your locale eg. en, fr etc
</li>
<li>
GnomePythonExtras 2.10 or above (aka gnome-python-desktop) so you can avoid compiling trayicon and gtkspell
</li>
<li>
gnome-python-desktop (for GnomeKeyring support)
</li>
<li>
notification-daemon or notify-python (and D-Bus) to get cooler popups
</li>
<li>
D-Bus running to have gajim-remote working
</li>
<li>
D-Bus running to have gajim-remote working
. Some distributions split dbus-x11, which is needed for dbus to work with Gajim.
</li>
<li>
python-dbus bindings
</li>
<li>
python-sexy to have clickable URLs in chat windows
</li>
<li>
python-kerberos to use GSSAPI authentification. Note: version1.1 or higher is required
</li>
...
...
This diff is collapsed.
Click to expand it.
src/common/dbus_support.py
+
2
−
0
View file @
2dec19d3
...
...
@@ -40,6 +40,8 @@ try:
pass
import
dbus
import
dbus.glib
# test if dbus-x11 is installed
bus
=
dbus
.
SessionBus
()
supported
=
True
# does user have D-Bus bindings?
except
ImportError
:
supported
=
False
...
...
This diff is collapsed.
Click to expand it.
src/gajim-remote.py
+
2
−
0
View file @
2dec19d3
...
...
@@ -52,6 +52,8 @@ try:
import
dbus
import
dbus.service
import
dbus.glib
# test if dbus-x11 is installed
bus
=
dbus
.
SessionBus
()
except
Exception
:
print
str
(
exceptions
.
DbusNotSupported
())
sys
.
exit
(
1
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment