mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-03 11:11:05 +00:00
The pjsua and pjsystest apps are now built only if TEST_FRAMEWORK is set. The python bindings are now built only if TEST_FRAMEWORK is set and a python development package is installed. libresample was also disabled. ASTERISK-25993 #close Reported-by: Joshua Colp Change-Id: If4e91c503a02f113d5b71bc8b972081fa3ff6f03
11 lines
510 B
Makefile
11 lines
510 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 --disable-speex-codec --disable-speex-aec \
|
|
--disable-gsm-codec --disable-video --disable-v4l2 --disable-sound --disable-opencore-amr \
|
|
--disable-ilbc-codec --without-libyuv --disable-g7221-codec --disable-resample
|
|
|
|
ifeq ($(shell uname -s),Linux)
|
|
PJPROJECT_CONFIG_OPTS += --enable-epoll
|
|
endif
|