(tomcat) branch 9.0.x updated: Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC pool libraries (#733)

2024-06-11 Thread schultz
ignored when building Tomcat JDBC pool libraries (#733) e560e83766 is described below commit e560e8376652ce5a32f73e0ac1f1dec54e20cbe7 Author: Dimitrios Soumis AuthorDate: Wed Jun 12 00:12:35 2024 +0300 Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC pool libraries (#733

(tomcat) branch 10.1.x updated: Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC pool libraries (#733)

2024-06-11 Thread schultz
ignored when building Tomcat JDBC pool libraries (#733) fd6804041c is described below commit fd6804041ca4621b67f5a1d9decc3148e985ea39 Author: Dimitrios Soumis AuthorDate: Wed Jun 12 00:12:35 2024 +0300 Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC pool libraries (#733

(tomcat) branch main updated: Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC pool libraries (#733)

2024-06-11 Thread schultz
when building Tomcat JDBC pool libraries (#733) bd2b0f50c2 is described below commit bd2b0f50c2584e01b189ca196a422b8e63b934d9 Author: Dimitrios Soumis AuthorDate: Wed Jun 12 00:12:35 2024 +0300 Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC pool libraries (#733

Re: [PR] Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC poo… [tomcat]

2024-06-11 Thread via GitHub
ChristopherSchultz merged PR #733: URL: https://github.com/apache/tomcat/pull/733 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@tomcat

Re: [PR] Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC poo… [tomcat]

2024-06-11 Thread via GitHub
ChristopherSchultz commented on PR #733: URL: https://github.com/apache/tomcat/pull/733#issuecomment-2161606328 > When running `ant deploy` to reproduce the build, `pre-release` target will not have been executed If you are trying to reproduce the build, they you will have `build.pro

Re: [PR] Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC poo… [tomcat]

2024-06-11 Thread via GitHub
dsoumis commented on PR #733: URL: https://github.com/apache/tomcat/pull/733#issuecomment-2160410399 > Is tstamp.iso.release defined at that spot @dsoumis ? Yes. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the U

Re: [PR] Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC poo… [tomcat]

2024-06-05 Thread via GitHub
isapir commented on PR #733: URL: https://github.com/apache/tomcat/pull/733#issuecomment-2150229542 Is `tstamp.iso.release` defined at that spot @dsoumis ? If so, maybe we can set a default for `ant.tstamp.now.iso` to be `tstamp.iso.release`? -- This is an automated message from the Apac

Re: [PR] Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC poo… [tomcat]

2024-06-05 Thread via GitHub
: > build-tomcat-jdbc: [echo] Building Tomcat JDBC pool libraries [tstamp] magic property ant.tstamp.now.iso ignored as '${ant.tstamp.now.iso}' is not in valid ISO pattern [tstamp] magic property ant.tstamp.now.iso ignored as '${ant.tstamp.now.iso}' is n

[PR] Fix property ant.tstamp.now.iso ignored when building Tomcat JDBC poo… [tomcat]

2024-06-05 Thread via GitHub
dsoumis opened a new pull request, #733: URL: https://github.com/apache/tomcat/pull/733 …l libraries -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

Re: Building Tomcat 8.5.x with Java 7

2021-11-11 Thread Konstantin Kolinko
чт, 11 нояб. 2021 г. в 16:53, Christopher Schultz : > > All, > > It looks like fetching the NSIS installer from downloads.sourceforge.net > is a problem with Java 7. > > I should be able to download the dependencies with Java 8, then switch > to Java 7 for the actual build. > > Is there a way to sp

Re: Building Tomcat 8.5.x with Java 7

2021-11-11 Thread Mark Thomas
On 11/11/2021 13:55, Christopher Schultz wrote: All, On 11/11/21 08:53, Christopher Schultz wrote: It looks like fetching the NSIS installer from downloads.sourceforge.net is a problem with Java 7. *sigh* Java 8 is also failing with handshake_failure :( I wonder if it is time to build with

Re: Building Tomcat 8.5.x with Java 7

2021-11-11 Thread Christopher Schultz
All, On 11/11/21 08:53, Christopher Schultz wrote: It looks like fetching the NSIS installer from downloads.sourceforge.net is a problem with Java 7. *sigh* Java 8 is also failing with handshake_failure :( Hmm... -chris -

Building Tomcat 8.5.x with Java 7

2021-11-11 Thread Christopher Schultz
All, It looks like fetching the NSIS installer from downloads.sourceforge.net is a problem with Java 7. I should be able to download the dependencies with Java 8, then switch to Java 7 for the actual build. Is there a way to specify a JAVA_HOME for the compilation and testing, but to use a

Re: building Tomcat with a third-party library

2021-09-12 Thread alain hubert
ependencies to build > your own library. > See https://search.maven.org/artifact/org.apache.tomcat/tomcat-catalina > Then put your-library.jar either in yourApp.war#lib or in > $CATALINA_BASE/lib and configure your Authenticator in > yourApp.war#META-INF/context.xml or > $CATALINA_HOME/co

Re: building Tomcat with a third-party library

2021-09-09 Thread Martin Grigorov
server.xml See https://tomcat.apache.org/tomcat-9.0-doc/security-howto.html and https://tomcat.apache.org/tomcat-9.0-doc/config/valve.html#Authentication > > > I get the following errors. From what I understand, building Tomcat > > with an additional library would need to add it

Re: building Tomcat with a third-party library

2021-09-08 Thread Christopher Schultz
rom what I understand, building Tomcat with an additional library would need to add it somewhere but I was not able to find this in the documentation. Does anyone have an idea? > thanks for reading A.Hubert. compile: [javac] Compiling 1 source file to /home/ahubert/tests/tomcat-src/apache-tomc

building Tomcat with a third-party library

2021-09-08 Thread alain hubert
#x27;s not possible to compile anymore. I get the following errors. From what I understand, building Tomcat with an additional library would need to add it somewhere but I was not able to find this in the documentation. Does anyone have an idea ? thanks for reading A.Hubert. compile: [javac] C

Re: Issue building tomcat 8.5.56

2020-06-30 Thread Cesar Hernandez
Thank you Mark for the detailed response. I'm going to take a look at the right CI server now to take as a reference. There are no such tests in the Tomcat source tree nor can I find any record of such tests. What eaxcatly is running here? What I did was to download directly the zip source code

Re: Issue building tomcat 8.5.56

2020-06-30 Thread Mark Thomas
On 30/06/2020 04:47, Cesar Hernandez wrote: > Hi!, > > > I'm able to checkout 8.5.56 tag and have a successful: ant > But I'm getting the following errors [1] after running:  ant test We would need to see the individual test files to understand each of those failures. > I notice that in the bui

Issue building tomcat 8.5.56

2020-06-29 Thread Cesar Hernandez
Hi!, I'm able to checkout 8.5.56 tag and have a successful: ant But I'm getting the following errors [1] after running: ant test I notice that in the build.properties.default there are some Build control flags [2] related for NIO and NIO2, but by checking the Travis file I don't see those flags

[tomcat-connectors] branch master updated: Use Travis CI for building Tomcat Connectors on ARM64

2020-02-04 Thread mgrigorov
building Tomcat Connectors on ARM64 new e03b6a0 Merge pull request #4 from martin-g/feature/build-tomcat-connectors-on-arm64 30b8db1 is described below commit 30b8db127a9fe2c3df1f8a2710633f31238e1595 Author: Martin Tzvetanov Grigorov AuthorDate: Mon Feb 3 15:20:10 2020 +0200 Use Travis CI

[Tomcat Wiki] Update of "Building Tomcat on MacOS" by ChristopherSchultz

2018-11-06 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "Building Tomcat on MacOS" page has been changed by ChristopherSchultz: https://wiki.apache.org/tomcat/Building%20Tomcat%20on%20MacOS?action=diff&rev1=5&

[Tomcat Wiki] Update of "Building Tomcat on MacOS" by ChristopherSchultz

2018-11-06 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "Building Tomcat on MacOS" page has been changed by ChristopherSchultz: https://wiki.apache.org/tomcat/Building%20Tomcat%20on%20MacOS?action=diff&rev1=4&a

[Tomcat Wiki] Update of "Building Tomcat on MacOS" by ChristopherSchultz

2018-11-05 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "Building Tomcat on MacOS" page has been changed by ChristopherSchultz: https://wiki.apache.org/tomcat/Building%20Tomcat%20on%20MacOS?action=diff&rev1=3

[Tomcat Wiki] Update of "Building Tomcat on MacOS" by ChristopherSchultz

2018-11-05 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "Building Tomcat on MacOS" page has been changed by ChristopherSchultz: https://wiki.apache.org/tomcat/Building%20Tomcat%20on%20MacOS?action=diff&rev1=2&

[Tomcat Wiki] Update of "Building Tomcat on MacOS" by ChristopherSchultz

2018-11-05 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "Building Tomcat on MacOS" page has been changed by ChristopherSchultz: https://wiki.apache.org/tomcat/Building%20Tomcat%20on%20MacOS?action=diff&rev1=1&a

[Tomcat Wiki] Update of "Building Tomcat on MacOS" by ChristopherSchultz

2018-11-05 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change notification. The "Building Tomcat on MacOS" page has been changed by ChristopherSchultz: https://wiki.apache.org/tomcat/Building%20Tomcat%20on%20MacOS New page: Building Tomcat

Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-16 Thread Igal @ Lucee.org
On 10/16/2017 2:47 AM, Mark Thomas wrote: On 15/10/17 20:09, Igal @ Lucee.org wrote: On 10/15/2017 12:06 PM, Kapil Kumar wrote: Does that mean I could skip this part! If you didn't make any changes that can break Tomcat then you can skip that part, yes. It can be hard to judge when it is a go

Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-16 Thread Mark Thomas
On 15/10/17 20:09, Igal @ Lucee.org wrote: > On 10/15/2017 12:06 PM, Kapil Kumar wrote: >> Thanks, got you. Plain text emails only. >> >> Does that mean I could skip this part! > > If you didn't make any changes that can break Tomcat then you can skip > that part, yes. > > If you made changes tha

Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Igal @ Lucee.org
On 10/15/2017 12:06 PM, Kapil Kumar wrote: Thanks, got you. Plain text emails only. Does that mean I could skip this part! If you didn't make any changes that can break Tomcat then you can skip that part, yes. If you made changes that might have broken something, then this part will test m

RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Kapil Kumar
Thanks, got you. Plain text emails only. Does that mean I could skip this part! -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: 16 अक्तूबर 2017 00:18 To: Tomcat Developers List Subject: Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@ On 15/10

Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Mark Thomas
suite for all connectors on Linux, Windows and OSX. Mark > >   > > Regards > > Kapil Kumar > >   > > -Original Message- > From: Kapil Kumar [mailto:kap.kuma...@gmail.com] > Sent: 15 अक्तूबर 2017 23:10 > To: 'Tomcat Developers List' >

RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Caldarale, Charles R
> From: Kapil Kumar [mailto:kap.kuma...@gmail.com] > Subject: RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@ > I executed "ant test" and since past 1 hour it has been executing. > I have been getting the below prompts in terminal. You need to stop t

RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Kapil Kumar
To: 'Tomcat Developers List' Subject: RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@ Trying it now. -Original Message- From: Mark Thomas [ <mailto:ma...@apache.org> mailto:ma...@apache.org] Sent: 15 अक्तूबर 2017 22:06 To: Tomcat Developers L

RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Kapil Kumar
Trying it now. -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: 15 अक्तूबर 2017 22:06 To: Tomcat Developers List Subject: Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@ On 15/10/17 15:04, Kapil Kumar wrote: > Hello all, > > > &g

Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Mark Thomas
t; >   > >   > >   > >   > > Regards > > Kapil Kumar > >   > > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: 15 अक्तूबर 2017 12:57 > To: Tomcat Developers List > Subject: Re: Stuck at BUILDING.txt - (

RE: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Kapil Kumar
” I get build failed. Regards Kapil Kumar -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: 15 अक्तूबर 2017 12:57 To: Tomcat Developers List Subject: Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@ On 15/10/2017 03:07, Kapil Kumar

Re: Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-15 Thread Mark Thomas
On 15/10/2017 03:07, Kapil Kumar wrote: > Hello everyone, > > I followed the instructions in BUILDING.txt and configured JDK and Ant. > > But I am stuck at (3) Building Tomcat @VERSION_MAJOR_MINOR@ > > Not sure about what needs to be done and where the below file needs to

Stuck at BUILDING.txt - (3) Building Tomcat @VERSION_MAJOR_MINOR@

2017-10-14 Thread Kapil Kumar
Hello everyone, I followed the instructions in BUILDING.txt and configured JDK and Ant. But I am stuck at (3) Building Tomcat @VERSION_MAJOR_MINOR@ Not sure about what needs to be done and where the below file needs to be created. 1. The build is controlled by creating a

Re: Building tomcat with maven

2017-03-29 Thread Coty Sutherland
On Wed, Mar 29, 2017 at 1:31 PM, Mark Thomas wrote: > On 29/03/17 18:09, Coty Sutherland wrote: >> Hi, >> >> In order to improve my build process I'm looking at utilizing maven to >> build tomcat rather than ant (maven works with an existing toolset, >> whereas ant doesn't). Does anyone know of an

Re: Building tomcat with maven

2017-03-29 Thread Mark Thomas
On 29/03/17 18:09, Coty Sutherland wrote: > Hi, > > In order to improve my build process I'm looking at utilizing maven to > build tomcat rather than ant (maven works with an existing toolset, > whereas ant doesn't). Does anyone know of any groups that have tried > to do or are doing this, or any

Building tomcat with maven

2017-03-29 Thread Coty Sutherland
Hi, In order to improve my build process I'm looking at utilizing maven to build tomcat rather than ant (maven works with an existing toolset, whereas ant doesn't). Does anyone know of any groups that have tried to do or are doing this, or any projects that I could look into? If not, would anyone

Re: Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Martin Grigorov
On Sun, Nov 15, 2015 at 3:10 PM, Rainer Jung wrote: > Am 15.11.2015 um 13:59 schrieb Martin Grigorov: > >> On Sun, Nov 15, 2015 at 1:35 PM, Martin Grigorov >> wrote: >> > > To setup HTTP2 I follow the steps done by Konstantin Kolinko at >> https://bz.apache.org/bugzilla/show_bug.cgi?id=58605 >>

Re: Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Rainer Jung
Am 15.11.2015 um 13:59 schrieb Martin Grigorov: On Sun, Nov 15, 2015 at 1:35 PM, Martin Grigorov wrote: To setup HTTP2 I follow the steps done by Konstantin Kolinko at https://bz.apache.org/bugzilla/show_bug.cgi?id=58605 But here it fails with: 15-Nov-2015 13:40:37.505 INFO [main] org.apache

Re: Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Martin Grigorov
On Sun, Nov 15, 2015 at 1:35 PM, Martin Grigorov wrote: > > On Sun, Nov 15, 2015 at 12:54 PM, Martin Grigorov > wrote: > >> >> So I've checked in build.xml and saw that at line 1927 it copies the .dll >> files, as part of "dist-static" target. Executing "ant dist-target" leads >> to: >> > > Uh.

Re: Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Martin Grigorov
On Sun, Nov 15, 2015 at 1:35 PM, Mark Thomas wrote: > On 15/11/2015 11:54, Martin Grigorov wrote: > > > > > Running just 'ant' downloads tomcat-native.tar.gz (1.2.2) to base.path. > > But this file is just copied in ./output/build/bin/, it is not untar-ed. > > Correct. The source ships in that d

Re: Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Martin Grigorov
On Sun, Nov 15, 2015 at 12:54 PM, Martin Grigorov wrote: > > So I've checked in build.xml and saw that at line 1927 it copies the .dll > files, as part of "dist-static" target. Executing "ant dist-target" leads > to: > Uh. Of course ".dll" means that it will deal with Windows stuff... I have t

Re: Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Mark Thomas
On 15/11/2015 11:54, Martin Grigorov wrote: > Running just 'ant' downloads tomcat-native.tar.gz (1.2.2) to base.path. > But this file is just copied in ./output/build/bin/, it is not untar-ed. Correct. The source ships in that directory for the Tomcat .tar.gz distro. Users of that distro are ex

Issues when building Tomcat 9 + tcnative

2015-11-15 Thread Martin Grigorov
Hi devs, I'm trying to build 9.0.0.M1 from sources to test the HTTP2 functionalities. I haven't built Tomcat + tcnative before so I may be doing something wrong... I run Ubuntu 15.10 here. Running just 'ant' downloads tomcat-native.tar.gz (1.2.2) to base.path. But this file is just copied in ./o

[Bug 56988] Allow to use relative paths in base.path setting when building Tomcat, e.g. "base.path=../libraries"

2014-10-18 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56988 --- Comment #3 from Konstantin Kolinko --- Fixed in Tomcat 6 by r1632761 and will be in 6.0.43 onwards. -- You are receiving this mail because: You are the assignee for the bug. ---

[Bug 56988] Allow to use relative paths in base.path setting when building Tomcat, e.g. "base.path=../libraries"

2014-09-22 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56988 --- Comment #2 from Konstantin Kolinko --- Created attachment 32041 --> https://issues.apache.org/bugzilla/attachment.cgi?id=32041&action=edit 2014-09-22_tc6_56988.patch Patch for Tomcat 6 Tested with Ant 1.8.0 -- You are receiving thi

[Bug 56988] Allow to use relative paths in base.path setting when building Tomcat, e.g. "base.path=../libraries"

2014-09-17 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56988 Konstantin Kolinko changed: What|Removed |Added Status|NEW |RESOLVED Resolution|-

[Bug 56988] New: Allow to use relative paths in base.path setting when building Tomcat, e.g. "base.path=../libraries"

2014-09-17 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56988 Bug ID: 56988 Summary: Allow to use relative paths in base.path setting when building Tomcat, e.g. "base.path=../libraries" Product: Tomcat 7 Versi

Re: building tomcat

2014-08-20 Thread Sankaran, Nambi
Thank you. JDK6 works fine. On 8/20/14, 3:30 PM, "Caldarale, Charles R" wrote: >> From: Sankaran, Nambi [mailto:nsanka...@ebay.com] >> Subject: building tomcat > >> I'm trying to build tomcat locally, but the ant script is failing with >>the >&

RE: building tomcat

2014-08-20 Thread Caldarale, Charles R
> From: Sankaran, Nambi [mailto:nsanka...@ebay.com] > Subject: building tomcat > I'm trying to build tomcat locally, but the ant script is failing with the > following errors. So far I tried everything described in this page : > http://tomcat.apache.org/tomcat-7.0-doc/

building tomcat

2014-08-20 Thread Sankaran, Nambi
Hi I’m trying to build tomcat locally, but the ant script is failing with the following errors. So far I tried everything described in this page : http://tomcat.apache.org/tomcat-7.0-doc/building.html Btw, the error happens in windows and mac. Anyone else facing a similar issue? setproxy: tes

Re: Building Tomcat 7 with JDK 7

2014-05-29 Thread Konstantin Kolinko
2014-05-29 7:26 GMT+04:00 Andrew Carr : > From what I have read building Tomcat 7 has to be done with JDK 6 and the > option by the devs was to fix JDK 7 building in Tomcat 8 and tell people to > compile Tomcat 7 with JDK 6, running it with Java 7. Is this true? > Are there plans to

Re: Building Tomcat 7 with JDK 7

2014-05-29 Thread Mark Thomas
On 29/05/2014 04:26, Andrew Carr wrote: > From what I have read building Tomcat 7 has to be done with JDK 6 and the > option by the devs was to fix JDK 7 building in Tomcat 8 and tell people to > compile Tomcat 7 with JDK 6, running it with Java 7. Is this true? No. There are many re

Re: Building Tomcat 7 with JDK 7

2014-05-29 Thread Emmanuel Bourg
Le 29/05/2014 05:26, Andrew Carr a écrit : > option by the devs was to fix JDK 7 building in Tomcat 8 and tell people to > compile Tomcat 7 with JDK 6, running it with Java 7. Is this true? > Are there plans to fix TC 7 to compile with JDK7? Should there be? FWIW Tomcat 7 is built with Java 7 in

Building Tomcat 7 with JDK 7

2014-05-28 Thread Andrew Carr
>From what I have read building Tomcat 7 has to be done with JDK 6 and the option by the devs was to fix JDK 7 building in Tomcat 8 and tell people to compile Tomcat 7 with JDK 6, running it with Java 7. Is this true? Are there plans to fix TC 7 to compile with JDK7? Should there be? Is t

Re: building tomcat-oacc: missing some classes?

2010-04-15 Thread Rainer Jung
I updated OACC with all relevant patches from TC 5.5.x, TC 6.0.x and one form trunk between September 2009 and now. Have fun. Regards, Rainer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands,

Re: building tomcat-oacc: missing some classes?

2010-04-15 Thread Rainer Jung
On 15.04.2010 17:37, Konstantin Kolinko wrote: 2010/4/12 Florian Kirchhoff: Hi, first please forgive me for the apparent x-post (my previous post was hi-jacked and thus is ignored by most relevant contributors, see http://old.nabble.com/Can-catalina-cluster-from-Tomcat-5.5-be-used-in-Tomcat-6-

Re: building tomcat-oacc: missing some classes?

2010-04-15 Thread Konstantin Kolinko
2010/4/12 Florian Kirchhoff : > > Hi, > > first please forgive me for the apparent x-post (my previous post was > hi-jacked and thus is ignored by most relevant contributors, see > http://old.nabble.com/Can-catalina-cluster-from-Tomcat-5.5-be-used-in-Tomcat-6--tp25244120p28173804.html). > > I got t

building tomcat-oacc: missing some classes?

2010-04-12 Thread Florian Kirchhoff
ava ReplicationValveTest.java SimpleTcpClusterTest.java -- View this message in context: http://old.nabble.com/building-tomcat-oacc%3A-missing-some-classes--tp28219172p28219172.html Sent from the Tomcat - Dev mailing list archive at Nabble.

Re: building tomcat-native on win32

2009-02-08 Thread Mladen Turk
Lorenz Breu wrote: i tried to build the tcnative libraries on my windows xp x86 machine using ms visual studio 2008, but it keeps telling me the project file is corrupted and can't be opened. this happens for both 1.1.15 and 1.1.16 versions of tc-native. any ideas? Make sure it has DOS (CRLF)

building tomcat-native on win32

2009-02-08 Thread Lorenz Breu
i tried to build the tcnative libraries on my windows xp x86 machine using ms visual studio 2008, but it keeps telling me the project file is corrupted and can't be opened. this happens for both 1.1.15 and 1.1.16 versions of tc-native. any ideas? cheers, lorenz ---

Re: Building tomcat native under win32 fails

2008-10-22 Thread Lorenz Breu
I have been trying to figure out why the tcnative project won't build, but without success... I have added the Microsoft SDK, Windows\system, Windows\system32 and OpenSSL\ library directories to the list of "Additional Library Directories" in Visual Studio 2008 for the projects apr, libapr, libctna

Re: Building tomcat native under win32 fails

2008-10-22 Thread Lorenz Breu
Hi again Thanks for the pointers, the native code now compiles...Well actually there is still that error in ossl_typ.h, but I just commented the line causing the error out (a typedef) for now. However, there is now a problem with linking. I keep getting the message: 1>apr-1.lib(rand.obj) : error

Re: Building tomcat native under win32 fails

2008-10-22 Thread Mladen Turk
Lorenz Breu wrote: Hi I tried to build tomcat native today following the instructions on the homepage. APR compiled just fine, but when I try to build tcnative using VS 2008 I get the following: 1>Compiling... 1>system.c 1>h:\Visual Studio\tomcat-native-1.1.15-win32-src\jni\apr\include\arch\win

Building tomcat native under win32 fails

2008-10-22 Thread Lorenz Breu
Hi I tried to build tomcat native today following the instructions on the homepage. APR compiled just fine, but when I try to build tcnative using VS 2008 I get the following: 1>Compiling... 1>system.c 1>h:\Visual Studio\tomcat-native-1.1.15-win32-src\jni\apr\include\arch\win32\apr_arch_misc.h(42

MD5 checksums when building Tomcat from source

2007-06-06 Thread Mark Claassen
I am trying to build Tomcat from source and I am curious about something. On the Tomcat download page it say the following: > "You must verify the integrity of the downloaded files." Yet, the Tomcat build blindly downloads all kinds of sources that are not verified in any way. ANT can do MD5 chec

DO NOT REPLY [Bug 42445] - Building tomcat from source - serverinfo.properties not showing minor version

2007-05-17 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42445] New: - Building tomcat from source - serverinfo.properties not showing minor version

2007-05-17 Thread bugzilla
gzilla/show_bug.cgi?id=42445 Summary: Building tomcat from source - serverinfo.properties not showing minor version Product: Tomcat 5 Version: Unknown Platform: Other OS/Version: All Status: NEW Severity:

Re: Building Tomcat 5.0 - SUCCESS

2006-02-19 Thread Bill Barker
"Bob Herrmann" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I believe I finally got Tomcat 5.0 to build cleanly Fedora 4. > > I used these 4 files; > > mktc - drives the whole thing (including blowing away any local copies) > build.xml -

Building Tomcat 5.0 - SUCCESS

2006-02-19 Thread Bob Herrmann
I believe I finally got Tomcat 5.0 to build cleanly Fedora 4. I used these 4 files; mktc - drives the whole thing (including blowing away any local copies) build.xml - from the building tomcat 5 page, but modified to use svn not cvs. ( http://tomcat.apache.org/tomcat-5.0-doc/build.xml

Re: Building Tomcat 5.0

2006-02-13 Thread Bob Herrmann
I'm trying to update the build script for 5.0 Has anyone seen this, it seems the 'get' in ant downloads a corrupt file, while the browser or command line tools get it right. ie. $ ant -f b.xml -Dsrc=http://easynews.dl.sourceforge.net/sourceforge/mx4j/mx4j-2.1.1.tar.gz b $

Re: Building Tomcat

2006-02-08 Thread Andre Kammerl
uts-1.2.4 Hope this will help you with you patch. Regards André - Original Message - From: "Bob Herrmann" <[EMAIL PROTECTED]> To: "Tomcat Developers List" Sent: Wednesday, February 08, 2006 2:44 PM Subject: Re: Building Tomcat Thanks! I f

Re: Building Tomcat

2006-02-08 Thread Bob Herrmann
stine (ie. md5sum verifyable) version of 5.0 might be very challenging in the future if enough bits rot on the vine. I'm still tinkering with it, should have it working in a few days. I'm planning on posting my patches so they can be used to update the building tomcat 5.0 page. Che

Re: Building Tomcat

2006-02-08 Thread Andre Kammerl
e the compiler error output for detail s. André - Original Message - From: "Bob Herrmann" <[EMAIL PROTECTED]> To: "Tomcat Developers List" Sent: Saturday, February 04, 2006 2:53 AM Subject: Re: Building Tomcat Humm. Since the instructions on t

Re: Building Tomcat

2006-02-03 Thread Bob Herrmann
and that developers should persue the 5.5 line. -bob Mark Thomas wrote: Bob Herrmann wrote: Ok, Is 5.0 a valid build target, or is its usage discouraged? I was following the build instructions for building tomcat 5.0 http://tomcat.apache.org/tomcat-5.0-doc/building.html the build.xml

Re: Building Tomcat

2006-02-03 Thread Mark Thomas
Bob Herrmann wrote: > > Ok, Is 5.0 a valid build target, or is its usage discouraged? > > I was following the build instructions for building tomcat 5.0 > http://tomcat.apache.org/tomcat-5.0-doc/building.html > the build.xml that it provides use CVS tags to extract the 5

Re: Building Tomcat

2006-02-03 Thread Bob Herrmann
Ok, Is 5.0 a valid build target, or is its usage discouraged? I was following the build instructions for building tomcat 5.0 http://tomcat.apache.org/tomcat-5.0-doc/building.html the build.xml that it provides use CVS tags to extract the 5.0 bits. -bob Mark Thomas wrote: Bob Herrmann

Re: Building Tomcat

2006-02-03 Thread Mark Thomas
Bob Herrmann wrote: > > yea, I might be bonkers.Now I can't even seem to get to the cvs > repo. I vaguely recall an effort to get everything on svn... is this a > part of that? > > $ cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login > Logging in to :pserver:[EMAIL PROTECTED]:2401/home/

Re: Building Tomcat

2006-02-03 Thread Bob Herrmann
lean setup) you will get this error, Well, lots of us are building Tomcat on a daily basis, so I would guess that you've tried something no-one ever anticipated. Regards, Mladen. - To unsubscribe, e-mail: [EMAIL PR

Re: Building Tomcat

2006-02-03 Thread Bob Herrmann
Come one :) I think you have a serious problems with your setup. If you first run "ant1.5" (from a clean setup) you will get this error, Well, lots of us are building Tomcat on a daily basis, so I would guess that you've tried

Re: Building Tomcat

2006-01-31 Thread Mark Thomas
Marsh David W Maj AFIT/ENG wrote: > Also the ant build may fail when it gets to jasper because the unzipped > code puts the necessary files in the .../jasper/jasper2 directory. Move > the code up a directory or change the ant script at line 1419 of > ${tomcat.source}/build/build.xml from I have r

Re: Building Tomcat

2006-01-31 Thread Henri Gomez
0 > > > > Come one :) > I think you have a serious problems with your setup. > > > > If you first run "ant1.5" (from a clean setup) you will get this error, > > > > Well, lots of us are building Tomcat on a daily basis, so > I w

Re: Building Tomcat

2006-01-31 Thread Mladen Turk
Bob Herrmann wrote: seems you need both "ant1.5" and "ant1.5" to compile tomcat 5.0 Come one :) I think you have a serious problems with your setup. If you first run "ant1.5" (from a clean setup) you will get this error, Well, lots of us are building

Re: Building Tomcat

2006-01-31 Thread Bob Herrmann
ld success. Although it looks like somebody should try and get tc 5.0 to compile all with either all 1.5 or 1.6 and recommend that on the building.html [1] page. Cheers -bob [1] http://tomcat.apache.org/tomcat-5.0-doc/building.html Bob Herrmann wrote: First time building to

Re: Building Tomcat

2006-01-31 Thread Bob Herrmann
First time building tomcat ( in a while.) I was following this page, http://tomcat.apache.org/tomcat-5.0-doc/building.html since it recommends ant 1.5, perhaps ant 1.6 has some incompatible changes This is also in the stack, [style] DEPRECATED - xalan processor is deprecated

RE: Building Tomcat

2006-01-31 Thread Marsh David W Maj AFIT/ENG
2:08 PM To: dev@tomcat.apache.org Subject: Building Tomcat Hi! I just tried to compile Tomcat on my Fedora 4 box w/o happiness. (using the network download build.xml, jdk1.4_09 and tried jdk5) $ ant ... BUILD FAILED /home/bob/Desktop/t2/build.xml:50: The following error occurred while executing

Building Tomcat

2006-01-31 Thread Bob Herrmann
Hi! I just tried to compile Tomcat on my Fedora 4 box w/o happiness. (using the network download build.xml, jdk1.4_09 and tried jdk5) $ ant ... BUILD FAILED /home/bob/Desktop/t2/build.xml:50: The following error occurred while executing this line: /home/bob/Desktop/t2/jakarta-tomcat-5/build.x

RE: Building Tomcat native connector on Windows

2005-11-09 Thread Fenlason, Josh
I was able to get this to build by adding User32.Lib to the Object/library modules field. , Josh. -Original Message- From: Fenlason, Josh Sent: Tuesday, November 01, 2005 8:53 AM To: Tomcat Dev (dev@tomcat.apache.org) Subject: Building Tomcat

Building Tomcat native connector on Windows

2005-11-01 Thread Fenlason, Josh
I'm trying to build the native connector with APR on Windows and I'm running into some linking issues. The apr and lib apr projects build fine, but it bombs out while linking the libtcnative project. I'm trying to build the tomcat-native-1.1.0 from Tomcat 5.5.12. Is APR 1.2.2 the correct version