summaryrefslogtreecommitdiff
path: root/configure.ac
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.ac
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.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 27b448bdf..9544060cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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