[asterisk-commits] file: branch 13 r431843 - /branches/13/contrib/scripts/install_prereq
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Feb 15 11:59:27 CST 2015
Author: file
Date: Sun Feb 15 11:59:26 2015
New Revision: 431843
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=431843
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
Modified:
branches/13/contrib/scripts/install_prereq
Modified: branches/13/contrib/scripts/install_prereq
URL: http://svnview.digium.com/svn/asterisk/branches/13/contrib/scripts/install_prereq?view=diff&rev=431843&r1=431842&r2=431843
==============================================================================
--- branches/13/contrib/scripts/install_prereq (original)
+++ branches/13/contrib/scripts/install_prereq Sun Feb 15 11:59:26 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