mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
20 lines
555 B
Bash
Executable File
20 lines
555 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OPTIONS="--disable-oss
|
|
--disable-video
|
|
--enable-ext-sound
|
|
--disable-speex-aec
|
|
--disable-g711-codec
|
|
--disable-l16-codec
|
|
--disable-gsm-codec
|
|
--disable-g722-codec
|
|
--disable-g7221-codec
|
|
--disable-speex-codec
|
|
--disable-ilbc-codec
|
|
--disable-sdl
|
|
--disable-ffmpeg
|
|
--disable-v4l2"
|
|
# TODO: autotools should be doing this
|
|
cd "`dirname $BASH_SOURCE`"/pjproject-2.1.0
|
|
./configure $OPTIONS && make dep && make -j1 && echo "pjsip successfully compiled"
|