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
l-n-s
gajim
Commits
a91f5f2c
Commit
a91f5f2c
authored
6 years ago
by
Sebastiaan Lokhorst
Committed by
Philipp Hörist
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix Bonjour (pybonjour) on macOS
parent
468d8bd4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
gajim/common/app.py
+8
-6
8 additions, 6 deletions
gajim/common/app.py
with
9 additions
and
7 deletions
README.md
+
1
−
1
View file @
a91f5f2c
...
...
@@ -17,7 +17,7 @@
-
python3-pil (pillow) for support of webp avatars
-
python3-gnupg to enable GPG encryption
-
For zeroconf
(bonjour)
you need python3-dbus
-
For zeroconf you need python3-dbus
on Linux or
[
pybonjour
](
https://dev.gajim.org/lovetox/pybonjour-python3
)
on Windows/macOS
-
gir1.2-gspell-1 and hunspell-LANG where lang is your locale eg. en, fr etc
-
gir1.2-secret-1 for GNOME Keyring or KDE support as password storage
-
D-Bus running to have gajim-remote working
...
...
This diff is collapsed.
Click to expand it.
gajim/common/app.py
+
8
−
6
View file @
a91f5f2c
...
...
@@ -220,12 +220,14 @@ def detect_dependencies():
# ZEROCONF
try
:
if
os
.
name
==
'
nt
'
:
import
pybonjour
# pylint: disable=unused-variable
_dependencies
[
'
PYBONJOUR
'
]
=
True
else
:
import
dbus
# pylint: disable=unused-variable
_dependencies
[
'
PYTHON-DBUS
'
]
=
True
import
pybonjour
# pylint: disable=unused-variable
_dependencies
[
'
PYBONJOUR
'
]
=
True
except
Exception
:
pass
try
:
import
dbus
# pylint: disable=unused-variable
_dependencies
[
'
PYTHON-DBUS
'
]
=
True
except
Exception
:
pass
...
...
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