aboutsummaryrefslogtreecommitdiff
path: root/src/rps
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2018-10-18 17:38:43 +0200
committerJulius Bünger <buenger@mytum.de>2018-10-20 14:47:30 +0200
commit061e86b157b1f13062ef879656a1c2678a8b6f35 (patch)
tree73c65526ed9216afa91bbed109d0c775ac57e807 /src/rps
parent6db3d32691dfeaae7d8591eb7ddf6217a01e7077 (diff)
downloadgnunet-061e86b157b1f13062ef879656a1c2678a8b6f35.tar.gz
gnunet-061e86b157b1f13062ef879656a1c2678a8b6f35.zip
RPS: Try to fix building error
Diffstat (limited to 'src/rps')
-rw-r--r--src/rps/Makefile.am4
-rw-r--r--src/rps/rps-test_util.c1
-rw-r--r--src/rps/rps-test_util.h2
3 files changed, 5 insertions, 2 deletions
diff --git a/src/rps/Makefile.am b/src/rps/Makefile.am
index 8d2ddf7d7..e6b74c9a2 100644
--- a/src/rps/Makefile.am
+++ b/src/rps/Makefile.am
@@ -20,8 +20,6 @@ pkgcfg_DATA = \
20bin_PROGRAMS = gnunet-rps 20bin_PROGRAMS = gnunet-rps
21 21
22gnunet_rps_SOURCES = \ 22gnunet_rps_SOURCES = \
23 gnunet-service-rps_sampler_elem.h gnunet-service-rps_sampler_elem.c \
24 rps-sampler_common.h rps-sampler_common.c \
25 gnunet-rps.c 23 gnunet-rps.c
26 24
27gnunet_rps_LDADD = \ 25gnunet_rps_LDADD = \
@@ -32,6 +30,8 @@ gnunet_rps_LDADD = \
32lib_LTLIBRARIES = libgnunetrps.la 30lib_LTLIBRARIES = libgnunetrps.la
33 31
34libgnunetrps_la_SOURCES = \ 32libgnunetrps_la_SOURCES = \
33 rps-test_util.h rps-test_util.c \
34 rps-sampler_common.h rps-sampler_common.c \
35 rps-sampler_client.h rps-sampler_client.c \ 35 rps-sampler_client.h rps-sampler_client.c \
36 rps_api.c rps.h 36 rps_api.c rps.h
37libgnunetrps_la_LIBADD = \ 37libgnunetrps_la_LIBADD = \
diff --git a/src/rps/rps-test_util.c b/src/rps/rps-test_util.c
index 271c96648..ffd43f6b1 100644
--- a/src/rps/rps-test_util.c
+++ b/src/rps/rps-test_util.c
@@ -26,6 +26,7 @@
26 26
27#include "platform.h" 27#include "platform.h"
28#include "gnunet_util_lib.h" 28#include "gnunet_util_lib.h"
29#include "rps-test_util.h"
29 30
30#include <inttypes.h> 31#include <inttypes.h>
31 32
diff --git a/src/rps/rps-test_util.h b/src/rps/rps-test_util.h
index 02b4bb400..2e6560723 100644
--- a/src/rps/rps-test_util.h
+++ b/src/rps/rps-test_util.h
@@ -26,6 +26,8 @@
26#ifndef RPS_TEST_UTIL_H 26#ifndef RPS_TEST_UTIL_H
27#define RPS_TEST_UTIL_H 27#define RPS_TEST_UTIL_H
28 28
29#define TO_FILE 1
30
29 31
30void 32void
31to_file_ (const char *file_name, char *line); 33to_file_ (const char *file_name, char *line);