debian-stretch-titan: include libfftranscode for our Iu related tests

Change-Id: Ifd7d682df90f1b17823d8358a8a498f149e4591b
This commit is contained in:
Harald Welte 2019-04-21 12:39:40 +02:00
parent 6657ba7889
commit a7deb5d7a8
1 changed files with 9 additions and 0 deletions

View File

@ -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