9
0
Fork 0

cosmetic: move gsm_data_shared.c to libcommon-cs

Since other projects also include gsm_data_shared.c and expect it to live in
libcommon, this commit may cause failing builds elsewhere. Same goes for the
debian/openbsc-dev package.

I considered having gsm_data_shared.c in both locations, but it doesn't really
make sense unless we want to keep duplicates for all eternity. At some point
users of this should be adjusted anyway.

Change-Id: Ie2cacc869a1991a40ea36dbce1ad5a0123f51852
This commit is contained in:
Neels Hofmeyr 2017-03-18 13:21:26 +01:00
parent 6f05e0d95f
commit 01ddd10c5a
5 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,3 @@
openbsc/include/openbsc/gsm_data_shared.h usr/src/osmocom/openbsc/openbsc/include/openbsc/
openbsc/include/openbsc/common_cs.h usr/src/osmocom/openbsc/openbsc/include/openbsc/
openbsc/src/libcommon/gsm_data_shared.c usr/src/osmocom/openbsc/openbsc/src/libcommon/
openbsc/src/libcommon-cs/gsm_data_shared.c usr/src/osmocom/openbsc/openbsc/src/libcommon-cs/

View File

@ -19,4 +19,5 @@ libcommon_cs_a_SOURCES = \
common_cs.c \
common_cs_vty.c \
gsm_data.c \
gsm_data_shared.c \
$(NULL)

View File

@ -21,7 +21,6 @@ libcommon_a_SOURCES = \
bsc_version.c \
common_vty.c \
debug.c \
gsm_data_shared.c \
gsup_client.c \
oap_client.c \
socket.c \

View File

@ -129,6 +129,7 @@ meas_json_SOURCES = \
meas_json_LDADD = \
$(top_builddir)/src/libcommon/libcommon.a \
$(top_builddir)/src/libcommon-cs/libcommon-cs.a \
$(LIBOSMOCORE_LIBS) \
$(LIBOSMOGSM_LIBS) \
$(NULL)