From a7deb5d7a851fe0342e4377604b338a5e86ee1c8 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 21 Apr 2019 12:39:40 +0200 Subject: [PATCH] debian-stretch-titan: include libfftranscode for our Iu related tests Change-Id: Ifd7d682df90f1b17823d8358a8a498f149e4591b --- debian-stretch-titan/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/debian-stretch-titan/Dockerfile b/debian-stretch-titan/Dockerfile index a308c2ae..18aad4b4 100644 --- a/debian-stretch-titan/Dockerfile +++ b/debian-stretch-titan/Dockerfile @@ -29,3 +29,12 @@ RUN apt-get update && \ # somehow Debian folks updated the gcc version but not titan :/ RUN sed -i 's/^#error/\/\/#error/' /usr/include/titan/cversion.h + + +# binary-only transcoding library for RANAP/RUA/HNBAP to work around TITAN only implementing BER +RUN apt-get update && \ + apt-get -y install wget +RUN wget https://ftp.osmocom.org/binaries/libfftranscode/libfftranscode0_0.1_amd64.deb && \ + wget https://ftp.osmocom.org/binaries/libfftranscode/libfftranscode-dev_0.1_amd64.deb && \ + apt install ./libfftranscode0_0.1_amd64.deb ./libfftranscode-dev_0.1_amd64.deb && \ + rm libfftranscode*.deb