Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 01 Mar 2016 23:29:52 +0000
From:      bugzilla-noreply@freebsd.org
To:        gnome@FreeBSD.org
Subject:   [Bug 207556] accessibility/orca: Add accessibility/py3-speech-dispatcher to BUILD_DEPENDS
Message-ID:  <bug-207556-6497-X8tPVCMiP9@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-207556-6497@https.bugs.freebsd.org/bugzilla/>
References:  <bug-207556-6497@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207556

Koop Mast <kwm@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kwm@FreeBSD.org

--- Comment #2 from Koop Mast <kwm@FreeBSD.org> ---
All the orca files are installed regardless if the python3 bindings of
speech-dispatch are installed or not. And unless I read the configure wrong=
 it
only does reporting if speech-dispatcher is available on build-time or not.

the speechdispatcherfactory.py file has the following:

[code]
try:
    import speechd
except:
    _speechd_available =3D False
else:
    _speechd_available =3D True
    try:
        getattr(speechd, "CallbackType")
    except AttributeError:
        _speechd_version_ok =3D False
    else:
        _speechd_version_ok =3D True
[/code]

So it check on run-time if speech-dispatcher is available or not. Could you=
 be
more specific why you think orca is miss-configured?

--=20
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-207556-6497-X8tPVCMiP9>