tests/.../Makefile.am avoid redundant linkage with librt

The librt is required for old glibc < 2.17 to get clock_gettime().
Since we do check the availability of this function libosmocore
and conditionally link it against librt, there is no need to do
such unconditional and redundant linkage here.

Change-Id: If587d16d2db677b97e3a0641027eb735af9c9c30
This commit is contained in:
Vadim Yanitskiy 2019-05-13 16:55:54 +07:00
parent 59ed7920eb
commit dcd709948c
2 changed files with 0 additions and 2 deletions

View File

@ -42,7 +42,6 @@ LDADD = \
$(LIBOSMOGSUPCLIENT_LIBS) \ $(LIBOSMOGSUPCLIENT_LIBS) \
$(LIBRARY_GSM) \ $(LIBRARY_GSM) \
-ldbi \ -ldbi \
-lrt \
$(NULL) $(NULL)
noinst_HEADERS = \ noinst_HEADERS = \

View File

@ -45,7 +45,6 @@ sms_queue_test_LDADD = \
$(LIBOSMOGSUPCLIENT_LIBS) \ $(LIBOSMOGSUPCLIENT_LIBS) \
$(LIBRARY_GSM) \ $(LIBRARY_GSM) \
-ldbi \ -ldbi \
-lrt \
$(NULL) $(NULL)
sms_queue_test_LDFLAGS = \ sms_queue_test_LDFLAGS = \