summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-06-30 07:25:09 -0600
committerGeorge Joseph <gjoseph@digium.com>2016-06-30 07:25:09 -0600
commit43a78100c0e51117e7e5c91ed2800c772f767f8a (patch)
tree3f07fdaee12538c5954311e6a0eaa1aef5b3a0b9 /configure
parent77c49ac1a142b1665a986ed7354eb33c2279851b (diff)
configure: Fix HAVE_PJSIP_EVSUB_GRP_LOCK not set with external pjproject
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 505a318bc..08093267b 100755
--- 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