[asterisk-commits] file: trunk r431844 - in /trunk: ./ contrib/scripts/install_prereq

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Feb 15 12:00:19 CST 2015


Author: file
Date: Sun Feb 15 12:00:18 2015
New Revision: 431844

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=431844
Log:
install_prereq: Tweak flags when configuring pjproject.

This change does two things:
1. Disables debugging so assertions which can return an error do,
instead of asserting.
2. Enables IPv6 support.

ASTERISK-24632 #close
Reported by: Rusty Newton
........

Merged revisions 431843 from http://svn.asterisk.org/svn/asterisk/branches/13

Modified:
    trunk/   (props changed)
    trunk/contrib/scripts/install_prereq

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.

Modified: trunk/contrib/scripts/install_prereq
URL: http://svnview.digium.com/svn/asterisk/trunk/contrib/scripts/install_prereq?view=diff&rev=431844&r1=431843&r2=431844
==============================================================================
--- trunk/contrib/scripts/install_prereq (original)
+++ trunk/contrib/scripts/install_prereq Sun Feb 15 12:00:18 2015
@@ -163,7 +163,7 @@
 			cd pjproject
 			git pull
 		fi
-		./configure --enable-shared --with-external-speex --with-external-gsm --with-external-srtp --disable-sound --disable-resample && make && make install
+		./configure CFLAGS="-DNDEBUG -DPJ_HAS_IPV6=1" --enable-shared --with-external-speex --with-external-gsm --with-external-srtp --disable-sound --disable-resample && make && make install
 		cd ..
 		echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local.conf
 		/sbin/ldconfig




More information about the asterisk-commits mailing list