aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2017-09-16 09:44:32 +0200
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2017-09-16 09:44:32 +0200
commitd5ec12fdbc288f376ee2ee18aceb00e338191f28 (patch)
tree262ebcee5d4808184adfd60d28e4155597bb1b90 /src
parent9e6994a55e64aaf7b45fdad7277c27bf30e3c0f3 (diff)
downloadgnunet-d5ec12fdbc288f376ee2ee18aceb00e338191f28.tar.gz
gnunet-d5ec12fdbc288f376ee2ee18aceb00e338191f28.zip
-move idp gns record handling to identity-provider
Diffstat (limited to 'src')
-rw-r--r--src/identity-provider/Makefile.am13
-rw-r--r--src/identity-provider/plugin_gnsrecord_identity_provider.c (renamed from src/identity/plugin_gnsrecord_identity.c)0
-rw-r--r--src/identity/Makefile.am11
3 files changed, 12 insertions, 12 deletions
diff --git a/src/identity-provider/Makefile.am b/src/identity-provider/Makefile.am
index 4f5738692..ab0c2f67e 100644
--- a/src/identity-provider/Makefile.am
+++ b/src/identity-provider/Makefile.am
@@ -22,7 +22,8 @@ pkgcfg_DATA = \
22lib_LTLIBRARIES = \ 22lib_LTLIBRARIES = \
23 libgnunetidentityprovider.la 23 libgnunetidentityprovider.la
24plugin_LTLIBRARIES = \ 24plugin_LTLIBRARIES = \
25 libgnunet_plugin_rest_identity_provider.la 25 libgnunet_plugin_rest_identity_provider.la \
26 libgnunet_plugin_gnsrecord_identity_provider.la
26 27
27bin_PROGRAMS = \ 28bin_PROGRAMS = \
28 gnunet-identity-token \ 29 gnunet-identity-token \
@@ -31,6 +32,15 @@ bin_PROGRAMS = \
31libexec_PROGRAMS = \ 32libexec_PROGRAMS = \
32 gnunet-service-identity-provider 33 gnunet-service-identity-provider
33 34
35libgnunet_plugin_gnsrecord_identity_provider_la_SOURCES = \
36 plugin_gnsrecord_identity_provider.c
37libgnunet_plugin_gnsrecord_identity_provider_la_LIBADD = \
38 $(top_builddir)/src/util/libgnunetutil.la \
39 $(LTLIBINTL)
40libgnunet_plugin_gnsrecord_identity_provider_la_LDFLAGS = \
41 $(GN_PLUGIN_LDFLAGS)
42
43
34gnunet_service_identity_provider_SOURCES = \ 44gnunet_service_identity_provider_SOURCES = \
35 gnunet-service-identity-provider.c \ 45 gnunet-service-identity-provider.c \
36 identity_token.c 46 identity_token.c
@@ -68,7 +78,6 @@ libgnunet_plugin_rest_identity_provider_la_LIBADD = \
68libgnunet_plugin_rest_identity_provider_la_LDFLAGS = \ 78libgnunet_plugin_rest_identity_provider_la_LDFLAGS = \
69 $(GN_PLUGIN_LDFLAGS) 79 $(GN_PLUGIN_LDFLAGS)
70 80
71
72gnunet_idp_SOURCES = \ 81gnunet_idp_SOURCES = \
73 gnunet-idp.c 82 gnunet-idp.c
74gnunet_idp_LDADD = \ 83gnunet_idp_LDADD = \
diff --git a/src/identity/plugin_gnsrecord_identity.c b/src/identity-provider/plugin_gnsrecord_identity_provider.c
index c26c04074..c26c04074 100644
--- a/src/identity/plugin_gnsrecord_identity.c
+++ b/src/identity-provider/plugin_gnsrecord_identity_provider.c
diff --git a/src/identity/Makefile.am b/src/identity/Makefile.am
index 94e8c5e94..b8e70fffb 100644
--- a/src/identity/Makefile.am
+++ b/src/identity/Makefile.am
@@ -42,8 +42,7 @@ libexec_PROGRAMS = \
42if HAVE_MHD 42if HAVE_MHD
43if HAVE_JSON 43if HAVE_JSON
44plugin_LTLIBRARIES = \ 44plugin_LTLIBRARIES = \
45 libgnunet_plugin_rest_identity.la \ 45 libgnunet_plugin_rest_identity.la
46 libgnunet_plugin_gnsrecord_identity.la
47endif 46endif
48endif 47endif
49 48
@@ -55,14 +54,6 @@ gnunet_service_identity_LDADD = \
55 $(top_builddir)/src/util/libgnunetutil.la \ 54 $(top_builddir)/src/util/libgnunetutil.la \
56 $(GN_LIBINTL) 55 $(GN_LIBINTL)
57 56
58libgnunet_plugin_gnsrecord_identity_la_SOURCES = \
59 plugin_gnsrecord_identity.c
60libgnunet_plugin_gnsrecord_identity_la_LIBADD = \
61 $(top_builddir)/src/util/libgnunetutil.la \
62 $(LTLIBINTL)
63libgnunet_plugin_gnsrecord_identity_la_LDFLAGS = \
64 $(GN_PLUGIN_LDFLAGS)
65
66 57
67libgnunet_plugin_rest_identity_la_SOURCES = \ 58libgnunet_plugin_rest_identity_la_SOURCES = \
68 plugin_rest_identity.c 59 plugin_rest_identity.c