mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-28 05:28:10 +00:00
The pjproject Makefile now uses the Asterisk optimization flags which are determined by the setting of the DONT_OPTMIZE menuselect flag. The Makefile was also restructured so a change to the top level menuselect.makeopts will result in a rebuild of pjproject. Also, "--disable-resample" was removed from the pjproject configure options. Without resample, pjsua (which is used by the testsuite) can't make audio calls. When it can't, it segfaults. Change-Id: I24b0a4d0872acef00ed89b3c527a713ee4c2ccd4
8 lines
447 B
Makefile
8 lines
447 B
Makefile
PJPROJECT_URL = http://www.pjsip.org/release/$(PJPROJECT_VERSION)
|
|
|
|
# Even though we're not installing pjproject, we're setting prefix to /opt/pjproject to be safe
|
|
PJPROJECT_CONFIG_OPTS = --prefix=/opt/pjproject --with-external-speex --with-external-gsm --with-external-srtp \
|
|
--with-external-pa --disable-video --disable-v4l2 --disable-sound \
|
|
--disable-opencore-amr --disable-ilbc-codec --without-libyuv --disable-g7221-codec \
|
|
--enable-epoll
|