From 6e29dd769e45685238b972cc29a01d4bf4764247 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 18 Nov 2024 12:03:57 -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. --- ubuntu/resources/switch/source-release.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ubuntu/resources/switch/source-release.sh b/ubuntu/resources/switch/source-release.sh index 3db771b..9619d64 100755 --- a/ubuntu/resources/switch/source-release.sh +++ b/ubuntu/resources/switch/source-release.sh @@ -109,8 +109,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