I've been having problems getting the fred from the public CVS server to
compile.  I know that the public server now lags 24 hours behind the
developer's, so I waited a day and tried again.  I still have the
same problem.  I'm sure the internal CVS is fine, but here is the error
I get when building from anonymous CVS this morning.

    [javac] Compiling 461 source files to /home/danello/freenet/freenet/build
    [javac] 
/home/danello/freenet/freenet/src/freenet/client/http/NodeStatusServlet.java:1356: 
writeHtmlContents(java.io.PrintWriter,int,java.lang.String) in 
freenet.OpenConnectionManager cannot be applied to 
(java.io.PrintWriter,freenet.ConnectionHandlerComparator,java.lang.String)
    [javac]         node.connections.writeHtmlContents(pw, sorter, servletPath);
    [javac]                         ^

I've included a diff of what I had to change to get a complete build.
Someone may want to post a notice on the download page that anonymous
CVS isn't reliable.

Index: freenet/client/http/NodeStatusServlet.java
===================================================================
RCS file:
/cvsroot/freenet/freenet/src/freenet/client/http/NodeStatusServlet.java,v
retrieving revision 1.60
diff -u -r1.60 NodeStatusServlet.java
--- freenet/client/http/NodeStatusServlet.java  23 Jun 2003 07:48:44
-0000     1.60
+++ freenet/client/http/NodeStatusServlet.java  24 Jun 2003 15:16:27
-0000
@@ -1353,7 +1353,7 @@
         pw.println("</title>");
         pw.println("</head>");
         pw.println("<body>");
-        node.connections.writeHtmlContents(pw, sorter, servletPath);
+        node.connections.writeHtmlContents(pw, 0, servletPath);
         pw.println("</body>");
         pw.println("</html>");
     }
Index: freenet/node/rt/ResponseTimeEstimator.java
===================================================================
RCS file:
/cvsroot/freenet/freenet/src/freenet/node/rt/ResponseTimeEstimator.java,v
retrieving revision 1.3
diff -u -r1.3 ResponseTimeEstimator.java
--- freenet/node/rt/ResponseTimeEstimator.java  9 Apr 2003 22:28:50
-0000      1.3
+++ freenet/node/rt/ResponseTimeEstimator.java  24 Jun 2003 15:16:37
-0000
@@ -1,4 +1,4 @@
-//package freenet.node.rt;
+package freenet.node.rt;
 //import freenet.*;
 import java.util.Random;
 import java.math.BigInteger;

-- 
Clearing my throat and gripping the lectern I smile and face my audience
Clearing his throat and smiling with his hands on the bathroom sink
    -TMBG, "'Till My Head Falls Off"
Homepage:    http://danky.com

Attachment: pgp00000.pgp
Description: PGP signature

Reply via email to