make dist related fixes
authorChristian Grothoff <christian@grothoff.org>
Fri, 16 Apr 2010 15:56:55 +0000 (15:56 +0000)
committerChristian Grothoff <christian@grothoff.org>
Fri, 16 Apr 2010 15:56:55 +0000 (15:56 +0000)
Makefile.am
TODO
configure.ac
src/fs/Makefile.am
src/hostlist/Makefile.am
src/include/Makefile.am
src/util/Makefile.am
src/util/plugin.c

index 06bb029dbc241fcb651fe4edb581eb2d36bd1c20..2b89f46767a446a1159c1abdb89bfc237917349d 100644 (file)
@@ -1,5 +1,5 @@
 INCLUDES = -I$(top_srcdir)/src/include
-SUBDIRS  = contrib src po
+SUBDIRS  = contrib m4 src po
 
 EXTRA_DIST = \
  ABOUT-NLS \
diff --git a/TODO b/TODO
index 441c0835e3220318cbbf39ca8be9914170c00043..9d543b9849d47a6411ef5b71b7a55bdde7e54038 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,12 +1,4 @@
 0.9.0pre0 [April]:
-* TRANSPORT: inbound sessions are not properly PING-PONG validated,
-  connect-event is then not properly signalled (peer behind NAT
-  never gets a 'connect' message) and finally we DO transmit 
-  data messages over the invalidated, only half-connect-signalled
-  channel (which confuses the core state machine, or now causes
-  transport-api assertion failures). [CG]
-  => now fixed, but needs testing!
-* FS-acceptance testing [CG]
 * Release checks:
   - portability
   - coverity
index d02d03896c7b2c9d24f790d6c73698194803bb3c..c65d2a15e2bc5960e9233cb54e81c6b6bc681b1d 100644 (file)
@@ -638,7 +638,10 @@ AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage],
                                         [use_gcov=yes], [use_gcov=no])
 AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"])
 
-
+# Not in 0.9.0pre0
+# src/dv/Makefile
+# src/dht/Makefile
+# src/fragmentation/Makefile
 
 AC_CONFIG_FILES([ 
 Makefile
@@ -650,9 +653,6 @@ src/arm/Makefile
 src/core/Makefile
 src/datacache/Makefile
 src/datastore/Makefile
-src/dv/Makefile
-src/dht/Makefile
-src/fragmentation/Makefile
 src/fs/Makefile
 src/hello/Makefile
 src/include/Makefile
index 02952fec80f2ab095aeddea831f024b5d2dedee1..cd7231ceb14f9a334d1d18b7c628e9cce71e03a8 100644 (file)
@@ -16,7 +16,7 @@ lib_LTLIBRARIES = libgnunetfs.la
 noinst_LIBRARIES = libgnunetfstest.a
 
 libgnunetfs_la_SOURCES = \
-  fs.c \
+  fs.c fs.h \
   fs_collection.c \
   fs_directory.c \
   fs_download.c \
index e2b45c208c4b365e17a4ae42560bb00268ac1523..daffa72dbe0051b2eddbc78a551c6de73641b39e 100644 (file)
@@ -9,7 +9,7 @@ bin_PROGRAMS = \
  gnunet-daemon-hostlist
 
 gnunet_daemon_hostlist_SOURCES = \
- gnunet-daemon-hostlist.c \
+ gnunet-daemon-hostlist.c gnunet-daemon-hostlist.h \
  hostlist-client.c hostlist-client.h \
  hostlist-server.c hostlist-server.h 
 
index 605cbbe1e14194eb4b5368116b1959229bb8777f..3c8612eb55793eb8efe18a04a207fc0cc934cedc 100644 (file)
@@ -30,9 +30,12 @@ gnunetinclude_HEADERS = \
   gnunet_fs_service.h \
   gnunet_getopt_lib.h \
   gnunet_hello_lib.h \
+  gnunet_nat_lib.h \
   gnunet_network_lib.h \
+  gnunet_os_lib.h \
   gnunet_peer_lib.h \
   gnunet_peerinfo_service.h \
+  gnunet_plugin_lib.h \
   gnunet_program_lib.h \
   gnunet_protocols.h \
   gnunet_pseudonym_lib.h \
index 13bef97e0fb94895da61c8e9ce48bd65f6866f9d..a8031d9156a08cd648f4cf092c47ae78f8df6692 100644 (file)
@@ -57,7 +57,7 @@ libgnunetutil_la_SOURCES = \
   plugin.c \
   program.c \
   pseudonym.c \
-  resolver_api.c \
+  resolver_api.c resolver.h \
   scheduler.c \
   server.c \
   server_nc.c \
index 950993bde3d278784a2ede7c31734c1c25934051..36380f339eb7b51ef5e46080f11de0605132f8c9 100644 (file)
@@ -25,7 +25,7 @@
  */
 
 #include "platform.h"
-#include <libltdl/ltdl.h>
+#include <ltdl.h>
 #include "gnunet_common.h"
 #include "gnunet_os_lib.h"
 #include "gnunet_plugin_lib.h"