From b56abb553100241723e818a664c015cdea2d58f4 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 9 Feb 2010 22:04:09 +0100 Subject: liblaf0rge: Make the other targets depend on the liblaforge... Everything is linking fine here. --- tests/sccp/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/sccp/Makefile.am b/tests/sccp/Makefile.am index 5a275fc..3e35014 100644 --- a/tests/sccp/Makefile.am +++ b/tests/sccp/Makefile.am @@ -4,5 +4,5 @@ AM_CFLAGS=-Wall -ggdb3 noinst_PROGRAMS = sccp_test sccp_test_SOURCES = sccp_test.c -sccp_test_LDADD = $(top_builddir)/src/libsccp.a $(top_builddir)/src/libbsc.a +sccp_test_LDADD = $(top_builddir)/src/libsccp.a $(top_builddir)/src/libbsc.a $(top_builddir)/src/liblaf0rge1.a -- cgit v1.2.3 From 63cd135faafd8abd94722a8b76cab3e8f634471c Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 12 Feb 2010 22:44:50 +0100 Subject: [sccp] Make the file includable outside of OpenBSC --- tests/sccp/sccp_test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/sccp/sccp_test.c b/tests/sccp/sccp_test.c index 37615e0..91a8085 100644 --- a/tests/sccp/sccp_test.c +++ b/tests/sccp/sccp_test.c @@ -26,9 +26,11 @@ #include -#include #include #include +#include + +#include #define MIN(x, y) ((x) < (y) ? (x) : (y)) -- cgit v1.2.3 From 6886ad5f665ea9c6ac87c91a99db4808fb263e4b Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 20 Feb 2010 17:29:27 +0100 Subject: finish openbsc / libosmocore separation * use pkg-config from openbsc to find header and library * move sms and timer tests to libosmocore itself * ensure "make distcheck" works on both packages --- tests/sccp/Makefile.am | 2 +- tests/sccp/sccp_test.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/sccp/Makefile.am b/tests/sccp/Makefile.am index 3e35014..4152a9a 100644 --- a/tests/sccp/Makefile.am +++ b/tests/sccp/Makefile.am @@ -4,5 +4,5 @@ AM_CFLAGS=-Wall -ggdb3 noinst_PROGRAMS = sccp_test sccp_test_SOURCES = sccp_test.c -sccp_test_LDADD = $(top_builddir)/src/libsccp.a $(top_builddir)/src/libbsc.a $(top_builddir)/src/liblaf0rge1.a +sccp_test_LDADD = $(top_builddir)/src/libsccp.a $(top_builddir)/src/libbsc.a $(LIBOSMOCORE_LIBS) diff --git a/tests/sccp/sccp_test.c b/tests/sccp/sccp_test.c index 562e134..982c168 100644 --- a/tests/sccp/sccp_test.c +++ b/tests/sccp/sccp_test.c @@ -28,7 +28,7 @@ #include #include -#include +#include #include -- cgit v1.2.3 From 5d074c7ee21ee280ada06a8aa972b43a7d50eaf6 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 26 Feb 2010 20:10:58 +0100 Subject: [misc] Add LIBOSMOCORE_CFLAGS to the includes --- tests/sccp/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/sccp/Makefile.am b/tests/sccp/Makefile.am index 4152a9a..b35693e 100644 --- a/tests/sccp/Makefile.am +++ b/tests/sccp/Makefile.am @@ -1,5 +1,5 @@ INCLUDES = $(all_includes) -I$(top_srcdir)/include -AM_CFLAGS=-Wall -ggdb3 +AM_CFLAGS=-Wall -ggdb3 $(LIBOSMOCORE_CFLAGS) noinst_PROGRAMS = sccp_test -- cgit v1.2.3