summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-04-16 15:56:55 +0000
committerChristian Grothoff <christian@grothoff.org>2010-04-16 15:56:55 +0000
commit78c6654d9807e45719d5de73bf42e664e40e7efa (patch)
tree72b1a81611b1b7f548b6e950ffee15b4b18bd4d4
parentbb960e581aff44f7890440faccb3383d0e105ca4 (diff)
downloadgnunet-78c6654d9807e45719d5de73bf42e664e40e7efa.tar.gz
gnunet-78c6654d9807e45719d5de73bf42e664e40e7efa.zip
make dist related fixes
-rw-r--r--Makefile.am2
-rw-r--r--TODO8
-rw-r--r--configure.ac8
-rw-r--r--src/fs/Makefile.am2
-rw-r--r--src/hostlist/Makefile.am2
-rw-r--r--src/include/Makefile.am3
-rw-r--r--src/util/Makefile.am2
-rw-r--r--src/util/plugin.c2
8 files changed, 12 insertions, 17 deletions
diff --git a/Makefile.am b/Makefile.am
index 06bb029db..2b89f4676 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
1INCLUDES = -I$(top_srcdir)/src/include 1INCLUDES = -I$(top_srcdir)/src/include
2SUBDIRS = contrib src po 2SUBDIRS = contrib m4 src po
3 3
4EXTRA_DIST = \ 4EXTRA_DIST = \
5 ABOUT-NLS \ 5 ABOUT-NLS \
diff --git a/TODO b/TODO
index 441c0835e..9d543b984 100644
--- a/TODO
+++ b/TODO
@@ -1,12 +1,4 @@
10.9.0pre0 [April]: 10.9.0pre0 [April]:
2* TRANSPORT: inbound sessions are not properly PING-PONG validated,
3 connect-event is then not properly signalled (peer behind NAT
4 never gets a 'connect' message) and finally we DO transmit
5 data messages over the invalidated, only half-connect-signalled
6 channel (which confuses the core state machine, or now causes
7 transport-api assertion failures). [CG]
8 => now fixed, but needs testing!
9* FS-acceptance testing [CG]
10* Release checks: 2* Release checks:
11 - portability 3 - portability
12 - coverity 4 - coverity
diff --git a/configure.ac b/configure.ac
index d02d03896..c65d2a15e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -638,7 +638,10 @@ AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage],
638 [use_gcov=yes], [use_gcov=no]) 638 [use_gcov=yes], [use_gcov=no])
639AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"]) 639AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"])
640 640
641 641# Not in 0.9.0pre0
642# src/dv/Makefile
643# src/dht/Makefile
644# src/fragmentation/Makefile
642 645
643AC_CONFIG_FILES([ 646AC_CONFIG_FILES([
644Makefile 647Makefile
@@ -650,9 +653,6 @@ src/arm/Makefile
650src/core/Makefile 653src/core/Makefile
651src/datacache/Makefile 654src/datacache/Makefile
652src/datastore/Makefile 655src/datastore/Makefile
653src/dv/Makefile
654src/dht/Makefile
655src/fragmentation/Makefile
656src/fs/Makefile 656src/fs/Makefile
657src/hello/Makefile 657src/hello/Makefile
658src/include/Makefile 658src/include/Makefile
diff --git a/src/fs/Makefile.am b/src/fs/Makefile.am
index 02952fec8..cd7231ceb 100644
--- a/src/fs/Makefile.am
+++ b/src/fs/Makefile.am
@@ -16,7 +16,7 @@ lib_LTLIBRARIES = libgnunetfs.la
16noinst_LIBRARIES = libgnunetfstest.a 16noinst_LIBRARIES = libgnunetfstest.a
17 17
18libgnunetfs_la_SOURCES = \ 18libgnunetfs_la_SOURCES = \
19 fs.c \ 19 fs.c fs.h \
20 fs_collection.c \ 20 fs_collection.c \
21 fs_directory.c \ 21 fs_directory.c \
22 fs_download.c \ 22 fs_download.c \
diff --git a/src/hostlist/Makefile.am b/src/hostlist/Makefile.am
index e2b45c208..daffa72db 100644
--- a/src/hostlist/Makefile.am
+++ b/src/hostlist/Makefile.am
@@ -9,7 +9,7 @@ bin_PROGRAMS = \
9 gnunet-daemon-hostlist 9 gnunet-daemon-hostlist
10 10
11gnunet_daemon_hostlist_SOURCES = \ 11gnunet_daemon_hostlist_SOURCES = \
12 gnunet-daemon-hostlist.c \ 12 gnunet-daemon-hostlist.c gnunet-daemon-hostlist.h \
13 hostlist-client.c hostlist-client.h \ 13 hostlist-client.c hostlist-client.h \
14 hostlist-server.c hostlist-server.h 14 hostlist-server.c hostlist-server.h
15 15
diff --git a/src/include/Makefile.am b/src/include/Makefile.am
index 605cbbe1e..3c8612eb5 100644
--- a/src/include/Makefile.am
+++ b/src/include/Makefile.am
@@ -30,9 +30,12 @@ gnunetinclude_HEADERS = \
30 gnunet_fs_service.h \ 30 gnunet_fs_service.h \
31 gnunet_getopt_lib.h \ 31 gnunet_getopt_lib.h \
32 gnunet_hello_lib.h \ 32 gnunet_hello_lib.h \
33 gnunet_nat_lib.h \
33 gnunet_network_lib.h \ 34 gnunet_network_lib.h \
35 gnunet_os_lib.h \
34 gnunet_peer_lib.h \ 36 gnunet_peer_lib.h \
35 gnunet_peerinfo_service.h \ 37 gnunet_peerinfo_service.h \
38 gnunet_plugin_lib.h \
36 gnunet_program_lib.h \ 39 gnunet_program_lib.h \
37 gnunet_protocols.h \ 40 gnunet_protocols.h \
38 gnunet_pseudonym_lib.h \ 41 gnunet_pseudonym_lib.h \
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
index 13bef97e0..a8031d915 100644
--- a/src/util/Makefile.am
+++ b/src/util/Makefile.am
@@ -57,7 +57,7 @@ libgnunetutil_la_SOURCES = \
57 plugin.c \ 57 plugin.c \
58 program.c \ 58 program.c \
59 pseudonym.c \ 59 pseudonym.c \
60 resolver_api.c \ 60 resolver_api.c resolver.h \
61 scheduler.c \ 61 scheduler.c \
62 server.c \ 62 server.c \
63 server_nc.c \ 63 server_nc.c \
diff --git a/src/util/plugin.c b/src/util/plugin.c
index 950993bde..36380f339 100644
--- a/src/util/plugin.c
+++ b/src/util/plugin.c
@@ -25,7 +25,7 @@
25 */ 25 */
26 26
27#include "platform.h" 27#include "platform.h"
28#include <libltdl/ltdl.h> 28#include <ltdl.h>
29#include "gnunet_common.h" 29#include "gnunet_common.h"
30#include "gnunet_os_lib.h" 30#include "gnunet_os_lib.h"
31#include "gnunet_plugin_lib.h" 31#include "gnunet_plugin_lib.h"