Return-Path: Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 86294 invoked from network); 24 Jul 2000 15:36:13 -0000 Received: from artemis.imaginet.fr (HELO mx2.imaginet.fr) (195.68.75.24) by locus.apache.org with SMTP; 24 Jul 2000 15:36:13 -0000 Received: from css5.cs (www2.slib.fr [195.68.49.130]) by mx2.imaginet.fr (8.9.3/8.8.8) with SMTP id RAA08193 for ; Mon, 24 Jul 2000 17:34:42 +0200 (MET DST) Received: from css4.cs (css4.cs [172.31.1.8]) by css5.cs (8.9.3/8.9.3) with ESMTP id QAA14697 for ; Mon, 24 Jul 2000 16:58:31 +0200 Received: by css4.cs with Internet Mail Service (5.5.2650.21) id ; Mon, 24 Jul 2000 17:29:46 +0200 Message-ID: <361024C34A6DD2118689006097AE2B4D69C8AD@css4.cs> From: GOMEZ Henri To: tomcat-dev@jakarta.apache.org Subject: mod_jk makefile for linux (and others unixes) Date: Mon, 24 Jul 2000 17:29:45 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/mixed; boundary="----_=_NextPart_000_01BFF583.FF3FE884" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N ------_=_NextPart_000_01BFF583.FF3FE884 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, A quick makefile I used to build mod_jk for work with mod_ssl and apache 1.3.12 Regards. PS: I compiled mod_jk, installed it in apache 1.3.12 + mod_ssl 2.6.5, removed mod_perl and mod_php3 ;-( but It didn't seems to relay requests to = my tomcat box APACHE -> MOD_JSERV (from TOMCAT 3.2-BETA-2) -> TOMCAT 3.2-BETA-2 OK APACHE -> MOD_JK (from TOMCAT 3.2-BETA-2) -> TOMCAT 3.2-BETA-2 FAILED (for ajp12 and ajp13 ;-( - Sp=E9ciale Audiard - Tonton Flingueurs - "Mais y conna=EEt pas Raoul ce mec. Y va avoir un reveil p=E9nible.=20 J'ai voulu =EAtre diplomate =E0 cause de vous tous, =E9viter qu'le sang = coule mais maint'nant c'est fini ! Je vais l'travailler en f=E9rocit=E9 ! l'faire marcher =E0 coup = d'latte, =E0 ma pogne je veux l'voir ! et j'vous promets qui demandera pardon ! et au garde-=E0-vous !" =20 ------_=_NextPart_000_01BFF583.FF3FE884 Content-Type: application/octet-stream; name="Makefile" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile" ## You need to edit this file - configure later :-)=0A= =0A= ## I assume this one is set up already=0A= # JAVA_HOME=3D=0A= =0A= JAVA_INCL=3D-I ${JAVA_HOME}/include -I ${JAVA_HOME}/include/${OS}=0A= JAVA_LIB=3D-L ${JAVA_HOME}/jre/lib/${ARCH} -L = ${JAVA_HOME}/lib/${ARCH}/native_threads=0A= ## You must have it for DSO building=0A= APXS=3Dapxs=0A= =0A= JK=3D../jk/=0A= SRCS=3D../jk/jk_ajp12_worker.c ../jk/jk_connect.c ../jk/jk_msg_buff.c = ../jk/jk_util.c ../jk/jk_ajp13.c \=0A= ../jk/jk_jni_worker.c ../jk/jk_pool.c ../jk/jk_worker.c = ../jk/jk_ajp13_worker.c ../jk/jk_lb_worker.c \=0A= ../jk/jk_sockbuf.c ../jk/jk_map.c ../jk/jk_uri_worker_map.c = =0A= =0A= all: mod_jk.so=0A= =0A= mod_jk.so: =0A= $(APXS) -I ../jk ${JAVA_INCL} -c -o $@ mod_jk.c $(SRCS) =0A= =0A= clean:=0A= rm *.o *.so=0A= ------_=_NextPart_000_01BFF583.FF3FE884--