On Tue, Mar 31, 2015 at 9:00 AM, Yaron Nachum <nachum.ya...@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

-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-dev

Reply via email to