diff options
author | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2020-05-06 09:31:11 +0200 |
---|---|---|
committer | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2020-05-06 09:31:11 +0200 |
commit | ca168098bb80966e20ed2d9e18289f3afd14d828 (patch) | |
tree | e37a0d03dbdcf10de2b0ed0d037ef48f248c09de /src/reclaim/Makefile.am | |
parent | 5f2f94367d366613426925eea30a8549d61280d1 (diff) |
improve configure messages for rest and reclaim
Diffstat (limited to 'src/reclaim/Makefile.am')
-rw-r--r-- | src/reclaim/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/reclaim/Makefile.am b/src/reclaim/Makefile.am index 9242d6d79..b2a4e6bac 100644 --- a/src/reclaim/Makefile.am +++ b/src/reclaim/Makefile.am @@ -17,6 +17,11 @@ REST_PLUGIN = \ endif endif +if HAVE_JSON +ATTESTATION_PLUGIN = \ + libgnunet_plugin_reclaim_attestation_jwt.la +endif + EXTRA_DIST = \ reclaim.conf \ test_reclaim_defaults.conf \ @@ -35,7 +40,7 @@ lib_LTLIBRARIES = \ plugin_LTLIBRARIES = \ libgnunet_plugin_gnsrecord_reclaim.la \ libgnunet_plugin_reclaim_attribute_basic.la \ - libgnunet_plugin_reclaim_attestation_jwt.la \ + $(ATTESTATION_PLUGIN) \ $(REST_PLUGIN) bin_PROGRAMS = \ |