[asterisk-dev] running pjsip testsuite

Matthew Jordan mjordan at digium.com
Tue Mar 31 09:39:00 CDT 2015


On Tue, Mar 31, 2015 at 9:00 AM, Yaron Nachum <nachum.yaron at gmail.com> wrote:
> Thank you mathew,
>
> The pjproject was detected on the installation process. When I run Asterisk
> I see that pjsip modules are running.
>

The dependency checking for Asterisk assumes that the Asterisk modules
are all installed in the 'default' location:

    def _find_asterisk_module(self, name):
        """Determine if an Asterisk module exists"""
        if Dependency.ast.original_astmoddir == "":
            return False

        module = "%s/%s.so" % (Dependency.ast.original_astmoddir, name)
        if os.path.exists(module):
            return True

        return False

The fact that this is finding some of your Asterisk modules (app_echo)
but not the PJSIP ones is a bit odd.

What is the output of:

ls /usr/lib/asterisk/modules | grep pjsip



-- 
Matthew Jordan
Digium, Inc. | Director of Technology
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: http://digium.com & http://asterisk.org



More information about the asterisk-dev mailing list