aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-26 02:52:03 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-26 02:52:03 +0100
commite67688c0a717e662773f67a485a767fe2db17da1 (patch)
tree2631611ead764b6dc544e9d2d4dc5636e07f744f /src
parent4fe745c1a0a912d793790c20653c1ff812dc1f34 (diff)
downloadgnunet-e67688c0a717e662773f67a485a767fe2db17da1.tar.gz
gnunet-e67688c0a717e662773f67a485a767fe2db17da1.zip
get rid of --enable-wachs option, move mlp plugin to experimental-only
Diffstat (limited to 'src')
-rw-r--r--src/ats-tests/Makefile.am2
-rw-r--r--src/ats/Makefile.am12
2 files changed, 8 insertions, 6 deletions
diff --git a/src/ats-tests/Makefile.am b/src/ats-tests/Makefile.am
index cfed92f2b..4811bc8d7 100644
--- a/src/ats-tests/Makefile.am
+++ b/src/ats-tests/Makefile.am
@@ -13,6 +13,7 @@ if USE_COVERAGE
13 AM_CFLAGS = -fprofile-arcs -ftest-coverage 13 AM_CFLAGS = -fprofile-arcs -ftest-coverage
14endif 14endif
15 15
16if HAVE_EXPERIMENTAL
16if HAVE_LIBGLPK 17if HAVE_LIBGLPK
17 PERF_MLP = \ 18 PERF_MLP = \
18 perf_ats_mlp_transport_none \ 19 perf_ats_mlp_transport_none \
@@ -22,6 +23,7 @@ if HAVE_LIBGLPK
22 perf_ats_mlp_core_bandwidth \ 23 perf_ats_mlp_core_bandwidth \
23 perf_ats_mlp_core_latency 24 perf_ats_mlp_core_latency
24endif 25endif
26endif
25 27
26if HAVE_TESTING 28if HAVE_TESTING
27TESTING_TESTS = \ 29TESTING_TESTS = \
diff --git a/src/ats/Makefile.am b/src/ats/Makefile.am
index af7f6bd58..759dac0be 100644
--- a/src/ats/Makefile.am
+++ b/src/ats/Makefile.am
@@ -21,14 +21,16 @@ endif
21lib_LTLIBRARIES = libgnunetats.la 21lib_LTLIBRARIES = libgnunetats.la
22 22
23plugin_LTLIBRARIES = \ 23plugin_LTLIBRARIES = \
24 libgnunet_plugin_ats_proportional.la \ 24 libgnunet_plugin_ats_proportional.la
25 $(GN_MLP_LIB) \
26 libgnunet_plugin_ats_ril.la
27 25
26if HAVE_EXPERIMENTAL
27plugin_LTLIBRARIES += \
28 libgnunet_plugin_ats_ril.la
28if HAVE_LIBGLPK 29if HAVE_LIBGLPK
29plugin_LTLIBRARIES += \ 30plugin_LTLIBRARIES += \
30 libgnunet_plugin_ats_mlp.la 31 libgnunet_plugin_ats_mlp.la
31endif 32endif
33endif
32 34
33libgnunetats_la_SOURCES = \ 35libgnunetats_la_SOURCES = \
34 ats_api_connectivity.c \ 36 ats_api_connectivity.c \
@@ -54,7 +56,6 @@ libgnunet_plugin_ats_proportional_la_LDFLAGS = \
54 $(GN_PLUGIN_LDFLAGS) 56 $(GN_PLUGIN_LDFLAGS)
55 57
56 58
57if HAVE_LIBGLPK
58libgnunet_plugin_ats_mlp_la_SOURCES = \ 59libgnunet_plugin_ats_mlp_la_SOURCES = \
59 plugin_ats_mlp.c 60 plugin_ats_mlp.c
60libgnunet_plugin_ats_mlp_la_LIBADD = \ 61libgnunet_plugin_ats_mlp_la_LIBADD = \
@@ -64,7 +65,6 @@ libgnunet_plugin_ats_mlp_la_LIBADD = \
64libgnunet_plugin_ats_mlp_la_LDFLAGS = \ 65libgnunet_plugin_ats_mlp_la_LDFLAGS = \
65 $(GN_PLUGIN_LDFLAGS) \ 66 $(GN_PLUGIN_LDFLAGS) \
66 -lglpk 67 -lglpk
67endif
68 68
69libgnunet_plugin_ats_ril_la_SOURCES = \ 69libgnunet_plugin_ats_ril_la_SOURCES = \
70 plugin_ats_ril.c 70 plugin_ats_ril.c
@@ -99,7 +99,7 @@ if HAVE_TESTING
99TESTING_TESTS = \ 99TESTING_TESTS = \
100 test_ats_api_proportional \ 100 test_ats_api_proportional \
101 test_ats_reservation_api_proportional 101 test_ats_reservation_api_proportional
102if HAVE_WACHS 102if HAVE_EXPERIMENTAL
103TESTING_TESTS += \ 103TESTING_TESTS += \
104 test_ats_api_ril 104 test_ats_api_ril
105if HAVE_LIBGLPK 105if HAVE_LIBGLPK