move grps_gsup_client.c to libcommon/gsup_client.c

This is in preparation for libvlr.

Related: OS#1592
Change-Id: I9ad7dc7f17f3b033c779de9ae8bc120655502fce
This commit is contained in:
Neels Hofmeyr 2016-12-08 22:27:22 +01:00 committed by Harald Welte
parent 3d6b9f4fe9
commit 2c1f8c8ceb
5 changed files with 17 additions and 16 deletions

View File

@ -37,7 +37,6 @@ OSMO_LIBS = \
$(NULL)
bin_PROGRAMS = \
gsup_test_client \
osmo-gbproxy \
$(NULL)
if HAVE_LIBGTP
@ -88,7 +87,6 @@ osmo_sgsn_SOURCES = \
sgsn_auth.c \
gprs_subscriber.c \
gprs_utils.c \
gprs_gsup_client.c \
sgsn_cdr.c \
sgsn_ares.c \
slhc.c \
@ -132,16 +130,3 @@ osmo_gtphub_LDADD = \
$(LIBGTP_LIBS) \
-lrt \
$(NULL)
gsup_test_client_SOURCES = \
gprs_gsup_client.c \
gsup_test_client.c \
$(NULL)
gsup_test_client_LDADD = \
$(top_builddir)/src/libcommon/libcommon.a \
$(LIBOSMOCORE_LIBS) \
$(LIBOSMOGSM_LIBS) \
$(LIBOSMOVTY_LIBS) \
$(LIBOSMOABIS_LIBS) \
-lrt \
$(NULL)

View File

@ -23,8 +23,25 @@ libcommon_a_SOURCES = \
debug.c \
gsm_data.c \
gsm_data_shared.c \
gsup_client.c \
oap_client.c \
socket.c \
talloc_ctx.c \
gsm_subscriber_base.c \
$(NULL)
noinst_PROGRAMS = \
gsup_test_client \
$(NULL)
gsup_test_client_SOURCES = \
gsup_test_client.c \
$(NULL)
gsup_test_client_LDADD = \
libcommon.a \
$(LIBOSMOCORE_LIBS) \
$(LIBOSMOGSM_LIBS) \
$(LIBOSMOVTY_LIBS) \
$(LIBOSMOABIS_LIBS) \
-lrt \
$(NULL)

View File

@ -50,7 +50,6 @@ sgsn_test_LDADD = \
$(top_builddir)/src/gprs/sgsn_libgtp.o \
$(top_builddir)/src/gprs/sgsn_auth.o \
$(top_builddir)/src/gprs/sgsn_ares.o \
$(top_builddir)/src/gprs/gprs_gsup_client.o \
$(top_builddir)/src/gprs/gprs_utils.o \
$(top_builddir)/src/gprs/gprs_subscriber.o \
$(top_builddir)/src/gprs/gprs_gb_parse.o \