diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-08-24 15:25:21 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-08-24 15:25:21 +0200 |
commit | 8d78615d0bf1307807e9e9ab92672a61f17ea4c7 (patch) | |
tree | 533443c44e8cfa4b431f942de5f5b7a60724cd8d | |
parent | 5bb46d9a3ab568145f594c5a3cfa31ead3df38eb (diff) | |
download | gnunet-8d78615d0bf1307807e9e9ab92672a61f17ea4c7.tar.gz gnunet-8d78615d0bf1307807e9e9ab92672a61f17ea4c7.zip |
-remove pthread dependency, add additional libexec binary to gnunet package
-rw-r--r-- | contrib/Makefile.inc | 3 | ||||
-rw-r--r-- | debian/gnunet.install | 1 | ||||
-rw-r--r-- | src/setu/Makefile.am | 11 |
3 files changed, 6 insertions, 9 deletions
diff --git a/contrib/Makefile.inc b/contrib/Makefile.inc index c737a07f8..a563ef4a1 100644 --- a/contrib/Makefile.inc +++ b/contrib/Makefile.inc | |||
@@ -8,7 +8,8 @@ BUILDCOMMON_SHLIB_FILES = \ | |||
8 | build-common/sh/lib.sh/existence_python.sh \ | 8 | build-common/sh/lib.sh/existence_python.sh \ |
9 | build-common/sh/lib.sh/msg.sh \ | 9 | build-common/sh/lib.sh/msg.sh \ |
10 | build-common/sh/lib.sh/progname.sh \ | 10 | build-common/sh/lib.sh/progname.sh \ |
11 | build-common/sh/lib.sh/version_gnunet.sh | 11 | build-common/sh/lib.sh/version_gnunet.sh \ |
12 | build-common/LICENSE | ||
12 | 13 | ||
13 | BUILDCOMMON_CONF_FILES = \ | 14 | BUILDCOMMON_CONF_FILES = \ |
14 | build-common/conf/.dir-locals.el \ | 15 | build-common/conf/.dir-locals.el \ |
diff --git a/debian/gnunet.install b/debian/gnunet.install index 7bf5dce83..a19f47cc8 100644 --- a/debian/gnunet.install +++ b/debian/gnunet.install | |||
@@ -1,5 +1,6 @@ | |||
1 | etc/gnunet.conf | 1 | etc/gnunet.conf |
2 | usr/bin/ | 2 | usr/bin/ |
3 | usr/libexec/gnunet-cmds-helper | ||
3 | usr/lib/*/gnunet/ | 4 | usr/lib/*/gnunet/ |
4 | usr/lib/*/*.so.* | 5 | usr/lib/*/*.so.* |
5 | usr/share/man/ | 6 | usr/share/man/ |
diff --git a/src/setu/Makefile.am b/src/setu/Makefile.am index 6e2865d8c..77d048add 100644 --- a/src/setu/Makefile.am +++ b/src/setu/Makefile.am | |||
@@ -7,8 +7,6 @@ libexecdir= $(pkglibdir)/libexec/ | |||
7 | 7 | ||
8 | plugindir = $(libdir)/gnunet | 8 | plugindir = $(libdir)/gnunet |
9 | 9 | ||
10 | PTHREAD = -lpthread | ||
11 | |||
12 | pkgcfg_DATA = \ | 10 | pkgcfg_DATA = \ |
13 | setu.conf | 11 | setu.conf |
14 | 12 | ||
@@ -65,8 +63,7 @@ libgnunetsetu_la_SOURCES = \ | |||
65 | setu_api.c setu.h | 63 | setu_api.c setu.h |
66 | libgnunetsetu_la_LIBADD = \ | 64 | libgnunetsetu_la_LIBADD = \ |
67 | $(top_builddir)/src/util/libgnunetutil.la \ | 65 | $(top_builddir)/src/util/libgnunetutil.la \ |
68 | $(LTLIBINTL) \ | 66 | $(LTLIBINTL) |
69 | $(PTHREAD) | ||
70 | libgnunetsetu_la_LDFLAGS = \ | 67 | libgnunetsetu_la_LDFLAGS = \ |
71 | $(GN_LIB_LDFLAGS) | 68 | $(GN_LIB_LDFLAGS) |
72 | 69 | ||
@@ -94,8 +91,7 @@ perf_setu_api_SOURCES = \ | |||
94 | perf_setu_api_LDADD = \ | 91 | perf_setu_api_LDADD = \ |
95 | $(top_builddir)/src/util/libgnunetutil.la \ | 92 | $(top_builddir)/src/util/libgnunetutil.la \ |
96 | $(top_builddir)/src/testing/libgnunettesting.la \ | 93 | $(top_builddir)/src/testing/libgnunettesting.la \ |
97 | libgnunetsetu.la \ | 94 | libgnunetsetu.la |
98 | $(PTHREAD) | ||
99 | 95 | ||
100 | 96 | ||
101 | plugin_LTLIBRARIES = \ | 97 | plugin_LTLIBRARIES = \ |
@@ -107,8 +103,7 @@ libgnunet_plugin_block_setu_test_la_LIBADD = \ | |||
107 | $(top_builddir)/src/block/libgnunetblock.la \ | 103 | $(top_builddir)/src/block/libgnunetblock.la \ |
108 | $(top_builddir)/src/block/libgnunetblockgroup.la \ | 104 | $(top_builddir)/src/block/libgnunetblockgroup.la \ |
109 | $(top_builddir)/src/util/libgnunetutil.la \ | 105 | $(top_builddir)/src/util/libgnunetutil.la \ |
110 | $(LTLIBINTL) \ | 106 | $(LTLIBINTL) |
111 | $(PTHREAD) | ||
112 | libgnunet_plugin_block_setu_test_la_LDFLAGS = \ | 107 | libgnunet_plugin_block_setu_test_la_LDFLAGS = \ |
113 | $(GN_PLUGIN_LDFLAGS) | 108 | $(GN_PLUGIN_LDFLAGS) |
114 | 109 | ||