Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Alex Cruise
Hi folks, I'm trying to set up an automated build script that builds the jk2 ISAPI redirector for Tomcat 4.0.x. At the moment it complains that it can't find apr.h. I've downloaded the apr source and tried to find some nice, automatable way of configuring it, but I'm kind of stumped. Can

RE: Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Robert Priest
. NOTE - you must build the jkant. It contains the so/ task for compiling the native files. -Original Message- From: Alex Cruise [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 2:17 PM To: [EMAIL PROTECTED] Subject: Building ISAPI connector with Ant - How to materialize apr.h

RE: Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Robert Priest
- From: Robert Priest [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 2:26 PM To: 'Tomcat Users List' Subject: RE: Building ISAPI connector with Ant - How to materialize apr.h? Just curious Alex: you are aware that ant is used to build isapi_redirector2.dll in j-t-c now? under j-t-c\jk

Re: Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Alex Cruise
Robert Priest wrote: you are aware that ant is used to build isapi_redirector2.dll in j-t-c now? under j-t-c\jk\native2 there is a build.xml for it. You just have to set up a build.properties file under j-t-c\jk if your environment is set up properly, this should work. Well aware... The

RE: Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Robert Priest
-Original Message- From: Robert Priest Sent: Tuesday, February 11, 2003 2:29 PM To: 'Tomcat Users List' Subject: RE: Building ISAPI connector with Ant - How to materialize apr.h? Ahh yes, there is should also be an apr section in the build.properties file in the j-t-c\jk dir. I have

RE: Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Ignacio J. Ortega
Alex, 1) Install apache 2 latest version on your system, and you will get all files needed to get jk2 i_r2.dll to compile.. 2) tweak b.p to suit to your needs.. 3) call the vcvars32.bat file you will have in your MSVC6 or 7 install 4) ant.. Saludos, Ignacio J. Ortega

Re: Building ISAPI connector with Ant - How to materialize apr.h?

2003-02-11 Thread Alex Cruise
Alex Cruise wrote: Well aware... The question is how to get an apr.h that's correct for my configuration. :) Turns out the problem was that the .dsp files in apr-0.9.1.tar.gz have Unix line-endings, and MSDev can't handle it. I just threw a fixcrlf task into my build script and I'm moving