From 4e84c06f024cb079710af5bca7f7bc5c6674f076 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 10 Jun 2005 23:26:48 +0000 Subject: * build libavahi-common statically for debugging purposes git-svn-id: file:///home/lennart/svn/public/avahi/trunk@108 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-core/Makefile.am | 15 +++++++++------ avahi-core/avahi-test.c | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) (limited to 'avahi-core') diff --git a/avahi-core/Makefile.am b/avahi-core/Makefile.am index 6fb0839..ca7c385 100644 --- a/avahi-core/Makefile.am +++ b/avahi-core/Makefile.am @@ -25,7 +25,8 @@ AM_LDADD=$(GLIB20_LIBS) # Import stuff from avahi-common AM_CFLAGS+=-I$(top_srcdir)/avahi-common -AM_LDADD+=../avahi-common/libavahi-common.la +COMMON_LDADD=../avahi-common/libavahi-common.la +STATIC_COMMON_LDADD=../avahi-common/libavahi-common-static.a # This cool debug trap works on i386/gcc only AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")' @@ -68,36 +69,38 @@ libavahi_core_la_SOURCES = \ dns.c dns.h \ core.h \ llist.h +libavahi_core_la_CFLAGS = $(AM_CFLAGS) +libavahi_core_la_LIBADD = $(AM_LDADD) $(COMMON_LDADD) prioq_test_SOURCES = \ prioq-test.c \ prioq.c prioq.h prioq_test_CFLAGS = $(AM_CFLAGS) -prioq_test_LDADD = $(AM_LDADD) +prioq_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD) avahi_test_SOURCES = \ avahi-test.c \ $(libavahi_core_la_SOURCES) avahi_test_CFLAGS = $(AM_CFLAGS) -avahi_test_LDADD = $(AM_LDADD) +avahi_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD) conformance_test_SOURCES = \ conformance-test.c \ $(libavahi_core_la_SOURCES) conformance_test_CFLAGS = $(AM_CFLAGS) -conformance_test_LDADD = $(AM_LDADD) +conformance_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD) avahi_reflector_SOURCES = \ avahi-reflector.c \ $(libavahi_core_la_SOURCES) avahi_reflector_CFLAGS = $(AM_CFLAGS) -avahi_reflector_LDADD = $(AM_LDADD) +avahi_reflector_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD) dns_test_SOURCES = \ dns.c dns.h \ dns-test.c dns_test_CFLAGS = $(AM_CFLAGS) -dns_test_LDADD = $(AM_LDADD) +dns_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD) valgrind: avahi-test libtool --mode=execute valgrind ./avahi-test diff --git a/avahi-core/avahi-test.c b/avahi-core/avahi-test.c index 63c9f08..bd642e8 100644 --- a/avahi-core/avahi-test.c +++ b/avahi-core/avahi-test.c @@ -205,7 +205,7 @@ int main(int argc, char *argv[]) { loop = g_main_loop_new(NULL, FALSE); g_timeout_add(1000*5, dump_timeout, server); - g_timeout_add(1000*30, quit_timeout, loop); + g_timeout_add(1000*60, quit_timeout, loop); g_main_loop_run(loop); g_main_loop_unref(loop); -- cgit