From 6a12c7619607737f44722b7b3c49a4924f1e093e Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Tue, 7 Nov 2017 23:02:08 +0100 Subject: [PATCH] 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 --- tests/bssap/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) 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 = \