aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-11-07 23:02:08 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2017-11-07 23:02:08 +0100
commit6a12c7619607737f44722b7b3c49a4924f1e093e (patch)
treebb6426963ec42e60ecc2dad08c8553ff2c28e98c
parent39c609b7c924524172ad311bdf89f92b7ccf175a (diff)
fix build: bssap test broke by undefined references
After the bssap test in Ie934c5d229140a89763bf2efff86d6a3766cd351, the subsequent commit Ia2882b7ca31a3219c676986e85045fa08a425d7a was not tested against the latest head, and its breaking bssap_test was not caught. Fix current master of osmo-bsc's 'make check' target: add osmo_bsc_mgcp.c and libosmo-mgcp-client dependencies to bssap_test linkage. Change-Id: I28719d267452f66d65581c43433e24a9f46cf7dc
-rw-r--r--tests/bssap/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/bssap/Makefile.am b/tests/bssap/Makefile.am
index 80d655fe7..4bbe9eab5 100644
--- a/tests/bssap/Makefile.am
+++ b/tests/bssap/Makefile.am
@@ -11,6 +11,7 @@ AM_CFLAGS = \
$(LIBOSMOABIS_CFLAGS) \
$(LIBOSMOSIGTRAN_CFLAGS) \
$(COVERAGE_CFLAGS) \
+ $(LIBOSMOMGCPCLIENT_CFLAGS) \
$(NULL)
EXTRA_DIST = \
@@ -28,6 +29,7 @@ bssap_test_SOURCES = \
$(top_srcdir)/src/osmo-bsc/osmo_bsc_sigtran.c \
$(top_srcdir)/src/osmo-bsc/osmo_bsc_filter.c \
$(top_srcdir)/src/osmo-bsc/osmo_bsc_grace.c \
+ $(top_srcdir)/src/osmo-bsc/osmo_bsc_mgcp.c \
$(NULL)
bssap_test_LDADD = \
@@ -39,6 +41,7 @@ bssap_test_LDADD = \
$(LIBOSMOGSM_LIBS) \
$(LIBOSMOABIS_LIBS) \
$(LIBOSMOSIGTRAN_LIBS) \
+ $(LIBOSMOMGCPCLIENT_LIBS) \
$(NULL)
bssap_test_LDFLAGS = \