aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-04-09 23:14:03 +0000
committerChristian Grothoff <christian@grothoff.org>2016-04-09 23:14:03 +0000
commit29e6158507a0758192075ac6ece7ba8e75ddc49a (patch)
treeb91ded48da322f8ba4c9bb0f5504228aa036c2d1 /src/Makefile.am
parent5dfcb058ab5db9ae0c4b147d8a99c64ca0980028 (diff)
downloadgnunet-29e6158507a0758192075ac6ece7ba8e75ddc49a.tar.gz
gnunet-29e6158507a0758192075ac6ece7ba8e75ddc49a.zip
small API change: do no longer pass rarely needed GNUNET_SCHEDULER_TaskContext to all scheduler tasks; instead, allow the relatively few tasks that need it to obtain the context via GNUNET_SCHEDULER_get_task_context()
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 38fa42356..f38dd19d3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -13,14 +13,9 @@ endif
13if HAVE_EXPERIMENTAL 13if HAVE_EXPERIMENTAL
14 EXP_DIR = \ 14 EXP_DIR = \
15 dv \ 15 dv \
16 multicast \
17 psycutil \
18 psycstore \
19 psyc \
20 rps \ 16 rps \
21 social \
22 $(CONSENSUS) \ 17 $(CONSENSUS) \
23 $(SECRETSHARING) 18 $(SECRETSHARING)
24endif 19endif
25 20
26if HAVE_REST 21if HAVE_REST
@@ -105,6 +100,11 @@ SUBDIRS = \
105 exit \ 100 exit \
106 pt \ 101 pt \
107 integration-tests \ 102 integration-tests \
103 multicast \
104 psycutil \
105 psycstore \
106 psyc \
107 social \
108 $(EXP_DIR) \ 108 $(EXP_DIR) \
109 $(PROVIDER_DIR) 109 $(PROVIDER_DIR)
110 110