gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r8571 - in gnunet: . src/arm src/core src/hello src/hostlis


From: gnunet
Subject: [GNUnet-SVN] r8571 - in gnunet: . src/arm src/core src/hello src/hostlist src/peerinfo src/resolver src/statistics src/topology src/transport src/util
Date: Sun, 14 Jun 2009 20:32:01 -0600

Author: grothoff
Date: 2009-06-14 20:32:01 -0600 (Sun, 14 Jun 2009)
New Revision: 8571

Modified:
   gnunet/TODO
   gnunet/src/arm/Makefile.am
   gnunet/src/core/Makefile.am
   gnunet/src/hello/Makefile.am
   gnunet/src/hostlist/Makefile.am
   gnunet/src/peerinfo/Makefile.am
   gnunet/src/resolver/Makefile.am
   gnunet/src/statistics/Makefile.am
   gnunet/src/topology/Makefile.am
   gnunet/src/transport/Makefile.am
   gnunet/src/util/Makefile.am
Log:
bld fixes

Modified: gnunet/TODO
===================================================================
--- gnunet/TODO 2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/TODO 2009-06-15 02:32:01 UTC (rev 8571)
@@ -69,7 +69,6 @@
   + implement sqlite plugin (talks to DB)
 
 Applications:
-* implement hostlist service (need to bootstrap!)
 * DHT, DV
 * FS / fs-libs
 
@@ -201,3 +200,11 @@
 
 Test coverage:
 * UTIL: 75%, 4914 out of 6463
+* HELLO:
+* ARM:
+* RESOLVER:
+* STATISTICS:
+* TRANSPORT:
+* CORE:
+* HOSTLIST: 0%
+* TOPOLOGY: 0%

Modified: gnunet/src/arm/Makefile.am
===================================================================
--- gnunet/src/arm/Makefile.am  2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/arm/Makefile.am  2009-06-15 02:32:01 UTC (rev 8571)
@@ -5,7 +5,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 lib_LTLIBRARIES = libgnunetarm.la
@@ -14,7 +15,7 @@
   arm_api.c arm.h
 libgnunetarm_la_LIBADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
-  $(GN_LIBINTL)
+  $(GN_LIBINTL) $(XLIB)
 libgnunetarm_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
   -version-info 0:0:0

Modified: gnunet/src/core/Makefile.am
===================================================================
--- gnunet/src/core/Makefile.am 2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/core/Makefile.am 2009-06-15 02:32:01 UTC (rev 8571)
@@ -5,7 +5,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 
@@ -17,7 +18,7 @@
 libgnunetcore_la_LIBADD = \
   $(top_builddir)/src/arm/libgnunetarm.la \
   $(top_builddir)/src/util/libgnunetutil.la \
-  $(GN_LIBINTL) 
+  $(GN_LIBINTL) $(XLIB)
 libgnunetcore_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
   -version-info 0:0:0

Modified: gnunet/src/hello/Makefile.am
===================================================================
--- gnunet/src/hello/Makefile.am        2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/hello/Makefile.am        2009-06-15 02:32:01 UTC (rev 8571)
@@ -5,7 +5,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = --coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 lib_LTLIBRARIES = libgnunethello.la
@@ -13,7 +14,7 @@
 libgnunethello_la_SOURCES = \
   hello.c 
 libgnunethello_la_LIBADD = \
- $(top_builddir)/src/util/libgnunetutil.la  
+ $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
 
 check_PROGRAMS = \
  test_hello

Modified: gnunet/src/hostlist/Makefile.am
===================================================================
--- gnunet/src/hostlist/Makefile.am     2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/hostlist/Makefile.am     2009-06-15 02:32:01 UTC (rev 8571)
@@ -1,7 +1,7 @@
 INCLUDES = -I$(top_srcdir)/src/include
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
 endif
 
 

Modified: gnunet/src/peerinfo/Makefile.am
===================================================================
--- gnunet/src/peerinfo/Makefile.am     2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/peerinfo/Makefile.am     2009-06-15 02:32:01 UTC (rev 8571)
@@ -5,7 +5,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 lib_LTLIBRARIES = libgnunetpeerinfo.la
@@ -14,7 +15,8 @@
   peerinfo_api.c peerinfo.h
 libgnunetpeerinfo_la_LIBADD = \
   $(top_builddir)/src/hello/libgnunethello.la \
-  $(top_builddir)/src/util/libgnunetutil.la 
+  $(top_builddir)/src/util/libgnunetutil.la \
+  $(XLIB)
 libgnunetpeerinfo_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
   -version-info 0:0:0

Modified: gnunet/src/resolver/Makefile.am
===================================================================
--- gnunet/src/resolver/Makefile.am     2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/resolver/Makefile.am     2009-06-15 02:32:01 UTC (rev 8571)
@@ -5,7 +5,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 
@@ -15,7 +16,7 @@
   resolver_api.c resolver.h
 libgnunetresolver_la_LIBADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
-  $(GN_LIBINTL)
+  $(GN_LIBINTL) $(XLIB)
 libgnunetresolver_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
   -version-info 0:0:0

Modified: gnunet/src/statistics/Makefile.am
===================================================================
--- gnunet/src/statistics/Makefile.am   2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/statistics/Makefile.am   2009-06-15 02:32:01 UTC (rev 8571)
@@ -5,7 +5,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 
@@ -15,7 +16,7 @@
   statistics_api.c statistics.h
 libgnunetstatistics_la_LIBADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
-  $(GN_LIBINTL)
+  $(GN_LIBINTL) $(XLIB)
 libgnunetstatistics_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
   -version-info 0:0:0

Modified: gnunet/src/topology/Makefile.am
===================================================================
--- gnunet/src/topology/Makefile.am     2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/topology/Makefile.am     2009-06-15 02:32:01 UTC (rev 8571)
@@ -1,7 +1,7 @@
 INCLUDES = -I$(top_srcdir)/src/include
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
 endif
 
 

Modified: gnunet/src/transport/Makefile.am
===================================================================
--- gnunet/src/transport/Makefile.am    2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/transport/Makefile.am    2009-06-15 02:32:01 UTC (rev 8571)
@@ -7,7 +7,7 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = -fprofile-arcs -ftest-coverage
+  AM_CFLAGS = --coverage -O0
 endif
 
 

Modified: gnunet/src/util/Makefile.am
===================================================================
--- gnunet/src/util/Makefile.am 2009-06-15 01:33:35 UTC (rev 8570)
+++ gnunet/src/util/Makefile.am 2009-06-15 02:32:01 UTC (rev 8571)
@@ -8,7 +8,8 @@
 endif
 
 if USE_COVERAGE
-  AM_CFLAGS = --coverage
+  AM_CFLAGS = --coverage -O0
+  XLIB = -lgcov
 endif
 
 lib_LTLIBRARIES = libgnunetutil.la
@@ -53,7 +54,7 @@
 libgnunetutil_la_LIBADD = \
   $(GCLIBADD) \
   $(LIBGCRYPT_LIBS) \
-  -lgmp -lltdl -lz -lextractor
+  -lgmp -lltdl -lz -lextractor $(XLIB)
 
 libgnunetutil_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS) $(WINFLAGS) \





reply via email to

[Prev in Thread] Current Thread [Next in Thread]