osmo-sgsn-master: Enable Iu support

So far the SGSN master image is built without Iu support.
osmo-sgsn-latest is using the built debian packages which enable Iu
support, so it's not an issue there.

Change-Id: Ib9c2e96dc7309f7fcbd563d656b64d37f2599f7b
This commit is contained in:
Daniel Willmann 2019-07-24 10:55:52 +02:00 committed by daniel
parent 4345224fa0
commit de77537151
1 changed files with 5 additions and 2 deletions

View File

@ -19,9 +19,12 @@ RUN apt-get update && \
libosmo-abis-dev \
libosmo-gsup-client-dev \
libosmo-netif-dev \
libosmo-ranap-dev \
libosmo-sccp-dev \
libosmo-sigtran-dev \
libsmpp34-dev \
libgtp-dev && \
libgtp-dev \
libasn1c-dev && \
apt-get clean
WORKDIR /tmp
@ -36,7 +39,7 @@ RUN cd osmo-sgsn && \
(git symbolic-ref -q HEAD && git reset --hard origin/$OSMO_SGSN_BRANCH || exit 1); \
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
autoreconf -fi && \
./configure && \
./configure --enable-iu && \
make -j8 install && \
ldconfig