]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
configure: Fix HAVE_PJSIP_EVSUB_GRP_LOCK not set with external pjproject 15/3115/1
authorGeorge Joseph <gjoseph@digium.com>
Thu, 30 Jun 2016 13:25:09 +0000 (07:25 -0600)
committerGeorge Joseph <gjoseph@digium.com>
Thu, 30 Jun 2016 13:31:14 +0000 (08:31 -0500)
There was a typo in configure.ac preventing HAVE_PJSIP_EVSUB_GRP_LOCK
from getting set when using an external pjproject.

ASTERISK-26099 #close
Reported-by: Ross Beer
Change-Id: I709af70428e125fb5ccd44b171d25dd29141f0ae

configure
configure.ac

index b4db56196d4585c757e7ae734986faf395bd22a3..a799095dded02543b188d3215870df9c5bfa8cf5 100755 (executable)
--- a/configure
+++ b/configure
@@ -25199,7 +25199,7 @@ if test "x${PBX_PJSIP_EVSUB_GRP_LOCK}" != "x1" -a "${USE_PJSIP_EVSUB_GRP_LOCK}"
          pbxlibdir="-L${PJSIP_EVSUB_GRP_LOCK_DIR}"
       fi
    fi
-   pbxfuncname="pjsip_evsub_add_lock"
+   pbxfuncname="pjsip_evsub_add_ref"
    if test "x${pbxfuncname}" = "x" ; then   # empty lib, assume only headers
       AST_PJSIP_EVSUB_GRP_LOCK_FOUND=yes
    else
index d67b1a01699fb2de2fc271784dc25e76f4c2d3d7..982bd7829029e0bdb58b3288898f0f63d2e015d0 100644 (file)
@@ -2196,7 +2196,7 @@ if test "$USE_PJPROJECT" != "no" ; then
       LIBS="${saved_libs}"
       CPPFLAGS="${saved_cppflags}"
 
-      AST_EXT_LIB_CHECK([PJSIP_EVSUB_GRP_LOCK], [pjsip], [pjsip_evsub_add_lock], [pjsip.h], [$PJPROJECT_LIB], [$PJPROJECT_CFLAGS])
+      AST_EXT_LIB_CHECK([PJSIP_EVSUB_GRP_LOCK], [pjsip], [pjsip_evsub_add_ref], [pjsip.h], [$PJPROJECT_LIB], [$PJPROJECT_CFLAGS])
    fi
 fi