aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-15 18:32:04 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-15 18:32:04 +0100
commitcc87156a3001d243dd110f667bb0643af2e1509b (patch)
tree6ea113dcc35b8fbc7925a752ea5f7e7a68b8751f /openbsc/tests
parent82cfa3945c35be251dff168260d30756bc3d60db (diff)
mgcp_transcoding_test: Add LIBOSMOABIS_CFLAGS
Currently, we see the following failure: make[3]: Entering directory '/build/openbsc/tests/mgcp' CC mgcp_transcoding_test.o CC mgcp_test.o In file included from ../../include/openbsc/gsm_data.h:176:0, from mgcp_transcoding_test.c:14: ../../include/openbsc/gsm_data_shared.h:21:35: fatal error: osmocom/abis/e1_input.h: No such file or directory #include <osmocom/abis/e1_input.h> ^ compilation terminated. as gsm_data.h includes gsm_data_shared.h, which includes the e1_input.h from libosmo-abis, we need to list libosmo-abis in the CFLAGS. Change-Id: I27c25adfc6ee2c6f07315f3bc76fa7a70202ac4d
Diffstat (limited to 'openbsc/tests')
-rw-r--r--openbsc/tests/mgcp/Makefile.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/openbsc/tests/mgcp/Makefile.am b/openbsc/tests/mgcp/Makefile.am
index 4b18036cc..33e921fb3 100644
--- a/openbsc/tests/mgcp/Makefile.am
+++ b/openbsc/tests/mgcp/Makefile.am
@@ -10,6 +10,7 @@ AM_CFLAGS = \
$(LIBOSMOCORE_CFLAGS) \
$(LIBOSMOGSM_FLAGS) \
$(LIBOSMONETIF_CFLAGS) \
+ $(LIBOSMOABIS_CFLAGS) \
$(LIBOSMOSCCP_CFLAGS) \
$(COVERAGE_CFLAGS) \
$(LIBBCG729_CFLAGS) \