This commit is contained in:
Nick Bhanji 2024-12-13 08:12:44 -05:00 committed by GitHub
commit 836cf70a9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 5 deletions

View File

@ -148,8 +148,7 @@ sed -i /usr/src/freeswitch-$switch_version/modules.conf -e s:'endpoints/mod_vert
--with-openssl --enable-core-pgsql-support
# compile and install
make -j $(getconf _NPROCESSORS_ONLN)
make install
make -j $(getconf _NPROCESSORS_ONLN) CFLAGS+=-Wno-error && make install
#return to the executing directory
cd $CWD

View File

@ -75,7 +75,7 @@ git clone -b $switch_version --single-branch https://github.com/fusionpbx/freesw
cd /usr/src/freeswitch-$switch_version
# bootstrap is needed if using git
./bootstrap.sh -j
#./bootstrap.sh -j
#1.10.0 and newer
if [ $(echo "$switch_version" | tr -d '.') -gt 1100 ]; then
@ -110,8 +110,7 @@ sed -i /usr/src/freeswitch-$switch_version/modules.conf -e s:'applications/mod_a
--with-openssl --enable-core-pgsql-support
# compile and install
make
make install
make -j $(getconf _NPROCESSORS_ONLN) CFLAGS+=-Wno-error && make install
#return to the executing directory
cd $CWD