aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2019-03-28 16:26:25 +0100
committerOliver Smith <osmith@sysmocom.de>2019-03-28 16:32:08 +0100
commitfb26eae47f514801b0573560b9077f9dd6b78990 (patch)
treeae360c0f37259a4cee3a051f064de46afeea1234
parente5a9665c009f9b81bbc370480405cb91cbe99b66 (diff)
osmo-bsc/Makefile.am: use LIBOSMOLEGACYMGCP_CFLAGS
Fix the following compile error, when libosmo-legacy-mgcp is installed, but into a different prefix than the other libosmo* libraries: In file included from osmo_bsc_msc.c:23:0: ../../include/osmocom/bsc/bsc_nat.h:24:38: fatal error: osmocom/legacy_mgcp/mgcp.h: No such file or directory #include <osmocom/legacy_mgcp/mgcp.h> This is needed for a new CI job, which builds old Osmocom releases against current master of all Osmocom libraries. libosmo-legacy-mgcp is provided by osmo-mgw 1.4.0 and was removed in later versions, so we want to have the 1.4.0 version installed into a fallback directory only. Related: OS#3867 Change-Id: Ibd7948f12da710f8ca2b8fde8870f134308eb908
-rw-r--r--src/osmo-bsc/Makefile.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/osmo-bsc/Makefile.am b/src/osmo-bsc/Makefile.am
index cc9674396..a04b6f25c 100644
--- a/src/osmo-bsc/Makefile.am
+++ b/src/osmo-bsc/Makefile.am
@@ -15,6 +15,7 @@ AM_CFLAGS = \
$(LIBOSMOABIS_CFLAGS) \
$(LIBOSMOSIGTRAN_CFLAGS) \
$(LIBOSMOMGCPCLIENT_CFLAGS) \
+ $(LIBOSMOLEGACYMGCP_CFLAGS) \
$(NULL)
AM_LDFLAGS = \