[asterisk-commits] file: branch 12 r403160 - in /branches/12: ./ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Nov 26 16:33:21 CST 2013
Author: file
Date: Tue Nov 26 16:33:19 2013
New Revision: 403160
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=403160
Log:
Fix a configure issue with PJSIP transaction group lock detection.
The configure check did not use the provided paths for pjproject
if provided when looking for transaction group lock support.
Modified:
branches/12/configure
branches/12/configure.ac
branches/12/include/asterisk/autoconfig.h.in
Modified: branches/12/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/12/configure.ac?view=diff&rev=403160&r1=403159&r2=403160
==============================================================================
--- branches/12/configure.ac (original)
+++ branches/12/configure.ac Tue Nov 26 16:33:19 2013
@@ -433,7 +433,7 @@
AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
AST_EXT_LIB_SETUP([PJPROJECT], [PJPROJECT], [pjproject])
AST_EXT_LIB_SETUP([POPT], [popt], [popt])
-AST_EXT_LIB_SETUP_OPTIONAL([PJ_TRANSACTION_GRP_LOCK], [PJSIP Transaction Group Lock Support], [pjsip])
+AST_EXT_LIB_SETUP_OPTIONAL([PJ_TRANSACTION_GRP_LOCK], [PJSIP Transaction Group Lock Support], [PJPROJECT], [pjsip])
AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
AST_EXT_LIB_SETUP_OPTIONAL([PRI_L2_PERSISTENCE], [ISDN Layer 2 persistence option], [PRI], [pri])
Modified: branches/12/include/asterisk/autoconfig.h.in
URL: http://svnview.digium.com/svn/asterisk/branches/12/include/asterisk/autoconfig.h.in?view=diff&rev=403160&r1=403159&r2=403160
==============================================================================
--- branches/12/include/asterisk/autoconfig.h.in (original)
+++ branches/12/include/asterisk/autoconfig.h.in Tue Nov 26 16:33:19 2013
@@ -569,8 +569,8 @@
/* Define if your system has the PJPROJECT libraries. */
#undef HAVE_PJPROJECT
-/* Define to 1 if pjsip has the PJSIP Transaction Group Lock Support feature.
- */
+/* Define to 1 if PJPROJECT has the PJSIP Transaction Group Lock Support
+ feature. */
#undef HAVE_PJ_TRANSACTION_GRP_LOCK
/* Define to 1 if your system defines IP_PKTINFO. */
More information about the asterisk-commits
mailing list