Review at https://gerrit.osmocom.org/6427
temp dev: make osmo-bsc_nat compile Change-Id: I165499762956b95ebd77c7670dc0ba0d03df59c6 --- M configure.ac M src/Makefile.am M src/osmo-bsc_nat/Makefile.am M src/osmo-bsc_nat/bsc_nat.c 4 files changed, 7 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/27/6427/1 diff --git a/configure.ac b/configure.ac index d756970..74b4fd3 100644 --- a/configure.ac +++ b/configure.ac @@ -153,6 +153,7 @@ src/libfilter/Makefile src/libcommon-cs/Makefile src/osmo-bsc/Makefile + src/osmo-bsc_nat/Makefile src/ipaccess/Makefile src/utils/Makefile tests/Makefile diff --git a/src/Makefile.am b/src/Makefile.am index 637272d..d40ab51 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -32,4 +32,5 @@ utils \ ipaccess \ osmo-bsc \ + osmo-bsc_nat \ $(NULL) diff --git a/src/osmo-bsc_nat/Makefile.am b/src/osmo-bsc_nat/Makefile.am index a941b58..6ca4ac0 100644 --- a/src/osmo-bsc_nat/Makefile.am +++ b/src/osmo-bsc_nat/Makefile.am @@ -10,6 +10,7 @@ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOVTY_CFLAGS) \ $(LIBOSMOCTRL_CFLAGS) \ + $(LIBOSMOABIS_CFLAGS) \ $(LIBOSMOSCCP_CFLAGS) \ $(LIBOSMOLEGACYMGCP_CFLAGS) \ $(COVERAGE_CFLAGS) \ @@ -47,7 +48,9 @@ $(LIBOSMOGSM_LIBS) \ $(LIBOSMOVTY_LIBS) \ $(LIBOSMOCTRL_LIBS) \ + $(LIBOSMOABIS_LIBS) \ $(LIBOSMOSIGTRAN_LIBS) \ + $(LIBOSMOLEGACYMGCP_LIBS) \ $(LIBRARY_GSM) \ -lrt \ $(NULL) diff --git a/src/osmo-bsc_nat/bsc_nat.c b/src/osmo-bsc_nat/bsc_nat.c index 5569d2f..411ec83 100644 --- a/src/osmo-bsc_nat/bsc_nat.c +++ b/src/osmo-bsc_nat/bsc_nat.c @@ -1733,3 +1733,5 @@ return 0; } + +struct bsc_msc_data *osmo_msc_data_find(struct gsm_network *net, int nr) { return NULL; } -- To view, visit https://gerrit.osmocom.org/6427 To unsubscribe, visit https://gerrit.osmocom.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I165499762956b95ebd77c7670dc0ba0d03df59c6 Gerrit-PatchSet: 1 Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit-Owner: Neels Hofmeyr <nhofm...@sysmocom.de>