Re: cvs commit: jakarta-tomcat-connectors/jk/native2/common list.mk

2002-05-24 Thread costinm
On Fri, 24 May 2002, jean-frederic clere wrote: > > I did that to get rid of the conditional compilation of files and > > simplify the makefiles, all files must be compiled. > > > Sure if jk_channel_jni.o is not linked in mod_jk2.so jk2_channel_jni_factory is > unresolved! If HAVE_JNI is und

Re: cvs commit: jakarta-tomcat-connectors/jk/native2/common list.mk

2002-05-24 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: > On Fri, 24 May 2002, jean-frederic clere wrote: > > >>> ${JK}jk_channel_jni${OEXT}\ >> >>That would require to have J2SE to compile mod_jk2. > > > No, it has an > > #ifdef HAVE_JNI > // jni-specific code > > #else > // empty factory > #endif > > I did that to

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common list.mk

2002-05-24 Thread GOMEZ Henri
>I did that to get rid of the conditional compilation of files and >simplify the makefiles, all files must be compiled. > >Based on HAS_APR and HAVE_JNI some sections of code will not >be compiled. Hum, what make me think that I could avoid to handle COMMON_OBJECTS and COMMON_APR_OBJECTS ? -

Re: cvs commit: jakarta-tomcat-connectors/jk/native2/common list.mk

2002-05-24 Thread costinm
On Fri, 24 May 2002, jean-frederic clere wrote: > > ${JK}jk_channel_jni${OEXT}\ > > That would require to have J2SE to compile mod_jk2. No, it has an #ifdef HAVE_JNI // jni-specific code #else // empty factory #endif I did that to get rid of the conditional compilation of files and si

RE: cvs commit: jakarta-tomcat-connectors/jk/native2/common list.mk

2002-05-24 Thread GOMEZ Henri
>> === >> ## Object needed for mod_jk for Apache >> COMMON_OBJECTS= \ >> ${JK}jk_channel_jni${OEXT}\ > >That would require to have J2SE to compile mod_jk2. > What do you means ? -- To unsubscribe, e-mail:

Re: cvs commit: jakarta-tomcat-connectors/jk/native2/common list.mk

2002-05-24 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: > > hgomez 02/05/24 00:18:31 > > Added: jk/native2/common list.mk > Log: > list.mk contains list of modules to be built, > COMMON_OBJECTS and COMMON_APR_OBJECTS. > Like this we could build jk2 for Apache 1.3 with/without APR > > Revision Changes