From 43a3ed24a339e160c3716cace865e59cafb9cafd Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 18 Nov 2024 12:02:42 -0700 Subject: [PATCH] Prevent a compile error for mod_pgsql This change prevents errors. So far testing shows PostgreSQL for what we are using it for still works. --- debian/resources/switch/source-release.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/debian/resources/switch/source-release.sh b/debian/resources/switch/source-release.sh index e979563..9e39d76 100755 --- a/debian/resources/switch/source-release.sh +++ b/debian/resources/switch/source-release.sh @@ -142,8 +142,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