]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
configure: Fix HAVE_PJSIP_EVSUB_GRP_LOCK not set with external pjproject 12/3112/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:25:09 +0000 (07:25 -0600)
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 505a318bcbc9a937b602a5a7e86b097407d9e53c..08093267b60d428bd75873590150416462134779 100755 (executable)
--- a/configure
+++ b/configure
@@ -25169,7 +25169,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 27b448bdfb9ab06697c07fb9b287eb8457b968e4..9544060cd3b5c83ef14cf762cc73178b3f8b2dcb 100644 (file)
@@ -2194,7 +2194,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