9
0
Fork 0

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
This commit is contained in:
Harald Welte 2018-01-15 18:32:04 +01:00
parent 82cfa3945c
commit cc87156a30
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ AM_CFLAGS = \
$(LIBOSMOCORE_CFLAGS) \
$(LIBOSMOGSM_FLAGS) \
$(LIBOSMONETIF_CFLAGS) \
$(LIBOSMOABIS_CFLAGS) \
$(LIBOSMOSCCP_CFLAGS) \
$(COVERAGE_CFLAGS) \
$(LIBBCG729_CFLAGS) \