bugzilla | 1 Jun 2006 03:28
Picon
Favicon

DO NOT REPLY [Bug 37977] - adapt build/BUILDING.txt and build.xml for svn on windows

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37977

------- Additional Comments From chrisahn <at> gmx.net  2006-06-01 01:28 -------
I ran into similar problems...

-> BUILDING.txt should contain a section on installing subversion
-> in the initial build.xml, I changed

    <exec dir="${basedir}" executable="svn">
         <arg line="checkout ${svnroot}/${current.loc} ${basedir}" />
    </exec>

to

    <exec dir="${basedir}" executable="svn" 
     inputstring="t${line.separator}" failonerror="true">
         <arg value="checkout" />
         <arg value="${svnroot}/${current.loc}" />
         <arg value="${basedir}" />
    </exec>

This fixes two problems:
(1) whitespace in the filenames is handled correctly
(2) svn temporarily accepts the self-signed certificate of svn.apache.org
(Continue reading)

bugzilla | 1 Jun 2006 03:30
Picon
Favicon

DO NOT REPLY [Bug 37977] - adapt build/BUILDING.txt and build.xml for svn on windows

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37977

------- Additional Comments From chrisahn <at> gmx.net  2006-06-01 01:30 -------
Created an attachment (id=18381)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=18381&action=view)
BUILDING.txt with new section on installing subversion

based on yoavs version from 2006-04-13, added section on subversion (basically
a copy of the section on Ant)

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
bugzilla | 1 Jun 2006 03:35
Picon
Favicon

DO NOT REPLY [Bug 37977] - adapt build/BUILDING.txt and build.xml for svn on windows

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37977

------- Additional Comments From chrisahn <at> gmx.net  2006-06-01 01:35 -------
Created an attachment (id=18382)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=18382&action=view)
build.xml with improved exec svn  task

split arg line to let ant handle whitespace in file names & use a little hack
to let svn temporarily accept the certificate of svn.apache.org.

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
bugzilla | 1 Jun 2006 03:37
Picon
Favicon

DO NOT REPLY [Bug 37977] - adapt build/BUILDING.txt and build.xml for svn on windows

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37977

chrisahn <at> gmx.net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #18382|0                           |1
        is obsolete|                            |

------- Additional Comments From chrisahn <at> gmx.net  2006-06-01 01:37 -------
Created an attachment (id=18383)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=18383&action=view)
build.xml with improved exec svn task

dammit... picked the wrong file...

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
bugzilla | 1 Jun 2006 03:49
Picon
Favicon

DO NOT REPLY [Bug 37977] - adapt build/BUILDING.txt and build.xml for svn on windows

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37977

------- Additional Comments From chrisahn <at> gmx.net  2006-06-01 01:49 -------
two more things come to mind...

- BUILDING.txt still needs info about svn and proxies... haven't tried it, but 
http://subversion.tigris.org/faq.html#proxy should work.
- The 'Building with Eclipse' section on http://tomcat.apache.org/tomcat-5.5-
doc/building.html is very helpful. It should be clarified though that one 
*should* use the elipse workspace as ${tomcat.source}. I found the 
sentence 'Unless you thought ahead to make the ${tomcat.source} directory be 
under your Workspace folder...' rather confusing. -> Move that sentence to the 
top of the section, and make clear that ${tomcat.source} should be == Workspace 
folder.

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
bugzilla | 1 Jun 2006 03:52
Picon
Favicon

DO NOT REPLY [Bug 37977] - adapt build/BUILDING.txt and build.xml for svn on windows

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37977

chrisahn <at> gmx.net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |chrisahn <at> gmx.net

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
mturk | 1 Jun 2006 11:25
Picon
Favicon
Gravatar

svn commit: r410808 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

Author: mturk
Date: Thu Jun  1 02:25:44 2006
New Revision: 410808

URL: http://svn.apache.org/viewvc?rev=410808&view=rev
Log:
Fix compile time warning by using proper value types.

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

Modified: tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c?rev=410808&r1=410807&r2=410808&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c Thu Jun  1 02:25:44 2006
 <at>  <at>  -53,9 +53,9  <at>  <at> 

 
 /* Calculate the greatest common divisor of two positive integers */
-static int gcd(int a, int b)
+static jk_uint64_t gcd(jk_uint64_t a, jk_uint64_t b)
 {
-    int r;
+    jk_uint64_t r;
     if (b > a) {
         r = a;
         a = b;
 <at>  <at>  -72,13 +72,13  <at>  <at> 
 /* Calculate the smallest common multiple of two positive integers */
(Continue reading)

models | 1 Jun 2006 11:26
Picon

svn commit: r410808 - /tomcat/connectors/trunk/jk/native/common/jk_lb

vielen Dank f
models | 1 Jun 2006 11:26
Picon

svn commit: r410808 - /tomcat/connectors/trunk/jk/native/common/jk_lb

vielen Dank f
models | 1 Jun 2006 11:27
Picon

svn commit: r410808 - /tomcat/connectors/trunk/jk/native/common/jk_lb

vielen Dank f

Gmane