[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnunet] 05/10: BUILD: Move dhtu to plugin
From: |
gnunet |
Subject: |
[gnunet] 05/10: BUILD: Move dhtu to plugin |
Date: |
Wed, 18 Oct 2023 15:15:53 +0200 |
This is an automated email from the git hooks/post-receive script.
martin-schanzenbach pushed a commit to branch master
in repository gnunet.
commit 14d9446a7d2bf06dc03ba35f361bf0bbcd9e7b44
Author: Martin Schanzenbach <schanzen@gnunet.org>
AuthorDate: Wed Oct 18 14:04:28 2023 +0200
BUILD: Move dhtu to plugin
---
configure.ac | 2 +-
po/POTFILES.in | 6 +++---
src/Makefile.am | 1 -
src/plugin/Makefile.am | 3 ++-
src/{ => plugin}/dhtu/.gitignore | 0
src/{ => plugin}/dhtu/Makefile.am | 0
src/{ => plugin}/dhtu/dhtu.conf | 0
src/{ => plugin}/dhtu/meson.build | 0
src/{ => plugin}/dhtu/plugin_dhtu_gnunet.c | 0
src/{ => plugin}/dhtu/plugin_dhtu_ip.c | 0
src/{ => plugin}/dhtu/test_dhtu_ip.c | 0
src/{ => plugin}/dhtu/testing_dhtu_cmd_send.c | 0
12 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/configure.ac b/configure.ac
index fb2600595..644d8adbd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1240,6 +1240,7 @@ src/lib/sq/Makefile
src/lib/testing/Makefile
src/plugin/Makefile
src/plugin/block/Makefile
+src/plugin/dhtu/Makefile
src/plugin/gnsrecord/Makefile
src/cadet/Makefile
src/cadet/cadet.conf
@@ -1254,7 +1255,6 @@ src/datastore/Makefile
src/datastore/datastore.conf
src/dht/Makefile
src/dht/dht.conf
-src/dhtu/Makefile
src/dns/Makefile
src/dns/dns.conf
src/exit/Makefile
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 4384d2c02..f2981502d 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -92,9 +92,6 @@ src/dht/gnunet-service-dht_neighbours.c
src/dht/gnunet-service-dht_routing.c
src/dht/gnunet_dht_profiler.c
src/dht/plugin_block_dht.c
-src/dhtu/plugin_dhtu_gnunet.c
-src/dhtu/plugin_dhtu_ip.c
-src/dhtu/testing_dhtu_cmd_send.c
src/dns/dns_api.c
src/dns/gnunet-dns-monitor.c
src/dns/gnunet-dns-redirector.c
@@ -372,6 +369,9 @@ src/peerstore/plugin_peerstore_flat.c
src/peerstore/plugin_peerstore_sqlite.c
src/plugin/block/plugin_block_template.c
src/plugin/block/plugin_block_test.c
+src/plugin/dhtu/plugin_dhtu_gnunet.c
+src/plugin/dhtu/plugin_dhtu_ip.c
+src/plugin/dhtu/testing_dhtu_cmd_send.c
src/plugin/gnsrecord/plugin_gnsrecord_dns.c
src/pt/gnunet-daemon-pt.c
src/reclaim/did_core.c
diff --git a/src/Makefile.am b/src/Makefile.am
index 41180c509..647ccd88d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -37,7 +37,6 @@ SUBDIRS = \
transport \
core \
nse \
- dhtu \
dht \
hostlist \
topology \
diff --git a/src/plugin/Makefile.am b/src/plugin/Makefile.am
index c3e06bca8..891777369 100644
--- a/src/plugin/Makefile.am
+++ b/src/plugin/Makefile.am
@@ -1,3 +1,4 @@
SUBDIRS = \
block \
- gnsrecord
+ gnsrecord \
+ dhtu
diff --git a/src/dhtu/.gitignore b/src/plugin/dhtu/.gitignore
similarity index 100%
rename from src/dhtu/.gitignore
rename to src/plugin/dhtu/.gitignore
diff --git a/src/dhtu/Makefile.am b/src/plugin/dhtu/Makefile.am
similarity index 100%
rename from src/dhtu/Makefile.am
rename to src/plugin/dhtu/Makefile.am
diff --git a/src/dhtu/dhtu.conf b/src/plugin/dhtu/dhtu.conf
similarity index 100%
rename from src/dhtu/dhtu.conf
rename to src/plugin/dhtu/dhtu.conf
diff --git a/src/dhtu/meson.build b/src/plugin/dhtu/meson.build
similarity index 100%
rename from src/dhtu/meson.build
rename to src/plugin/dhtu/meson.build
diff --git a/src/dhtu/plugin_dhtu_gnunet.c
b/src/plugin/dhtu/plugin_dhtu_gnunet.c
similarity index 100%
rename from src/dhtu/plugin_dhtu_gnunet.c
rename to src/plugin/dhtu/plugin_dhtu_gnunet.c
diff --git a/src/dhtu/plugin_dhtu_ip.c b/src/plugin/dhtu/plugin_dhtu_ip.c
similarity index 100%
rename from src/dhtu/plugin_dhtu_ip.c
rename to src/plugin/dhtu/plugin_dhtu_ip.c
diff --git a/src/dhtu/test_dhtu_ip.c b/src/plugin/dhtu/test_dhtu_ip.c
similarity index 100%
rename from src/dhtu/test_dhtu_ip.c
rename to src/plugin/dhtu/test_dhtu_ip.c
diff --git a/src/dhtu/testing_dhtu_cmd_send.c
b/src/plugin/dhtu/testing_dhtu_cmd_send.c
similarity index 100%
rename from src/dhtu/testing_dhtu_cmd_send.c
rename to src/plugin/dhtu/testing_dhtu_cmd_send.c
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [gnunet] branch master updated (9ef4abad6 -> 65dbd214b), gnunet, 2023/10/18
- [gnunet] 01/10: BUILD: Move curl to lib, gnunet, 2023/10/18
- [gnunet] 02/10: BUILD: Move json to lib, gnunet, 2023/10/18
- [gnunet] 03/10: BUILD: Move pq/sq to lib, gnunet, 2023/10/18
- [gnunet] 05/10: BUILD: Move dhtu to plugin,
gnunet <=
- [gnunet] 07/10: BUILD: Fix error code copy file, gnunet, 2023/10/18
- [gnunet] 04/10: BUILD: Move testing to lib, gnunet, 2023/10/18
- [gnunet] 06/10: BUILD: Move arm to service/cli, gnunet, 2023/10/18
- [gnunet] 10/10: BUILD: Move identity/rest components to service/rest-plugin, gnunet, 2023/10/18
- [gnunet] 08/10: BUILD: Move core to service/cli, gnunet, 2023/10/18
- [gnunet] 09/10: BUILD: Move experimental components to contrib, gnunet, 2023/10/18