aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/Makefile.am4
-rw-r--r--src/transport/test_transport_api.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index 236dec7c4..4d682c60d 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -54,13 +54,17 @@ plugin_LTLIBRARIES = \
54libgnunet_plugin_transport_tcp_la_SOURCES = \ 54libgnunet_plugin_transport_tcp_la_SOURCES = \
55 plugin_transport_tcp.c 55 plugin_transport_tcp.c
56libgnunet_plugin_transport_tcp_la_LIBADD = \ 56libgnunet_plugin_transport_tcp_la_LIBADD = \
57 $(top_builddir)/src/hello/libgnunethello.la \
57 $(top_builddir)/src/resolver/libgnunetresolver.la \ 58 $(top_builddir)/src/resolver/libgnunetresolver.la \
59 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
58 $(top_builddir)/src/util/libgnunetutil.la 60 $(top_builddir)/src/util/libgnunetutil.la
59libgnunet_plugin_transport_tcp_la_LDFLAGS = \ 61libgnunet_plugin_transport_tcp_la_LDFLAGS = \
60 $(GN_PLUGIN_LDFLAGS) 62 $(GN_PLUGIN_LDFLAGS)
61 63
62libgnunet_plugin_transport_template_la_SOURCES = \ 64libgnunet_plugin_transport_template_la_SOURCES = \
63 plugin_transport_template.c 65 plugin_transport_template.c
66libgnunet_plugin_transport_template_la_LIBADD = \
67 $(top_builddir)/src/util/libgnunetutil.la
64libgnunet_plugin_transport_template_la_LDFLAGS = \ 68libgnunet_plugin_transport_template_la_LDFLAGS = \
65 $(GN_PLUGIN_LDFLAGS) 69 $(GN_PLUGIN_LDFLAGS)
66 70
diff --git a/src/transport/test_transport_api.c b/src/transport/test_transport_api.c
index 6c4e94e04..ea22b9f12 100644
--- a/src/transport/test_transport_api.c
+++ b/src/transport/test_transport_api.c
@@ -255,7 +255,7 @@ stop_arm (struct PeerContext *p)
255#if START_ARM 255#if START_ARM
256 if (0 != PLIBC_KILL (p->arm_pid, SIGTERM)) 256 if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
257 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill"); 257 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
258 waitpid (p->arm_pid, NULL, 0); 258 GNUNET_OS_process_wait(p->arm_pid);
259#endif 259#endif
260 GNUNET_CONFIGURATION_destroy (p->cfg); 260 GNUNET_CONFIGURATION_destroy (p->cfg);
261} 261}