From 9126c56449462889cd49e15a2245fdb64999b7f1 Mon Sep 17 00:00:00 2001 From: Finn Date: Sun, 3 Nov 2024 22:01:04 -0800 Subject: [PATCH] bump freeswitch to v1.10.12 --- containers/freeswitch/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/freeswitch/Containerfile b/containers/freeswitch/Containerfile index aa765de..1a14ac5 100644 --- a/containers/freeswitch/Containerfile +++ b/containers/freeswitch/Containerfile @@ -44,7 +44,7 @@ RUN git clone https://github.com/freeswitch/sofia-sip.git /usr/src/sofia-sip && # libks RUN git clone https://github.com/signalwire/libks.git /usr/src/libks && \ cd /usr/src/libks && \ - git checkout v2.0.3 && \ + git checkout v2.0.6 && \ cmake . -DWITH_LIBBACKTRACE=1 -DCMAKE_INSTALL_PREFIX:PATH=/usr/local && \ make && \ make install @@ -60,7 +60,7 @@ RUN git clone https://github.com/freeswitch/spandsp.git /usr/src/spandsp && \ # freeswitch RUN git clone https://github.com/signalwire/freeswitch.git /usr/src/freeswitch && \ cd /usr/src/freeswitch && \ - git checkout v1.10.11 && \ + git checkout v1.10.12 && \ git am /patches/freeswitch/* && \ ./bootstrap.sh -j && \ ./configure --enable-core-pgsql-support --disable-fhs && \