aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-msc
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-03-15 18:00:28 +0100
committerHarald Welte <laforge@gnumonks.org>2019-05-19 07:25:04 +0000
commita10d79eab1e763ad5a3cd8f9d975532da5e9aa5e (patch)
tree89e0da934170a26f020be1f0abbb877690fbd186 /src/osmo-msc
parente0ef6d1e3258f49a71919198b366ab82d6816e2e (diff)
build osmo-msc: add "missing" LIBASN1C_LIBS
in osmo-msc/Makefile.am, osmo-msc was actually missing the LIBASN1C_LIBS even though it included LIBASN1C_CFLAGS. Probably libasn1c is implicitly linked from libranap.so, but doesn't hurt to name it. When building without Iu support, the LIBOSMORANAP* and LIBASN1C* vars are empty, so no need to explicitly switch on BUILD_IU, just name them. Change-Id: I39ae5e3f0f7661ca9ee5c17a500be28c461d7ec7
Diffstat (limited to 'src/osmo-msc')
-rw-r--r--src/osmo-msc/Makefile.am8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/osmo-msc/Makefile.am b/src/osmo-msc/Makefile.am
index 9b5471618..7b56c7458 100644
--- a/src/osmo-msc/Makefile.am
+++ b/src/osmo-msc/Makefile.am
@@ -43,15 +43,11 @@ osmo_msc_LDADD = \
$(LIBOSMOABIS_LIBS) \
$(LIBOSMONETIF_LIBS) \
$(LIBSMPP34_LIBS) \
+ $(LIBOSMORANAP_LIBS) \
+ $(LIBASN1C_LIBS) \
$(LIBOSMOSIGTRAN_LIBS) \
$(LIBOSMOMGCPCLIENT_LIBS) \
$(LIBOSMOGSUPCLIENT_LIBS) \
-ldbi \
-lsctp \
$(NULL)
-if BUILD_IU
-osmo_msc_LDADD += \
- $(LIBASN1C_LIBS) \
- $(LIBOSMORANAP_LIBS) \
- $(NULL)
-endif