mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-19 22:20:36 +00:00
9c05ddbddd
* Removed all 2.5.5 functional patches. * Updated usages of pj_release_pool to be "safe". * Updated configure options to disable webrtc. * Updated config_site.h to disable webrtc in pjmedia. * Added Richard Mudgett's recent resolver patches. Change-Id: Ib400cc4dfca68b3d07ce14d314e829bfddc252c7
38 lines
954 B
Makefile
38 lines
954 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-speex-aec \
|
|
--disable-gsm-codec \
|
|
--disable-ilbc-codec \
|
|
--disable-l16-codec \
|
|
--disable-g722-codec \
|
|
--disable-g7221-codec \
|
|
--disable-opencore-amr \
|
|
--disable-silk \
|
|
--disable-opus \
|
|
--disable-video \
|
|
--disable-v4l2 \
|
|
--disable-sound \
|
|
--disable-ext-sound \
|
|
--disable-oss \
|
|
--disable-sdl \
|
|
--disable-libyuv \
|
|
--disable-ffmpeg \
|
|
--disable-openh264 \
|
|
--disable-ipp \
|
|
--without-external-pa \
|
|
--without-external-srtp \
|
|
--without-external-webrtc
|
|
|
|
ifeq ($(findstring TEST_FRAMEWORK,$(MENUSELECT_CFLAGS)),)
|
|
PJPROJECT_CONFIG_OPTS += --disable-resample --disable-g711-codec
|
|
endif
|
|
|
|
ifeq ($(shell uname -s),Linux)
|
|
PJPROJECT_CONFIG_OPTS += --enable-epoll
|
|
endif
|