You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2002/05/14 13:27:34 UTC

cvs commit: jakarta-tomcat-connectors/jk/native2 Makefile.in

hgomez      02/05/14 04:27:33

  Added:       jk/native2 Makefile.in
  Log:
  Initial jk2 makefile.
  
  In Apache 2 mode, or when APR is allready present
  (via configure --with-apr-include/--with-apr-lib),
  only jk2/jni is compiled.
  
  In Apache 1.3 mode, when APR is available as an
  external source dir (via configure --with-apr),
  apr is compiled first.
  In that case, we'll have to pass the proper
  flags to configure.
  
  There is still works to be done:
  
  grab APR CFLAGS/LDFLAGS when not in Apache 2.0
  mode (where apxs allready known and reports them)
  
  handle apache 1.3 without APR
  
  avoid using --with-apr{xxxx} in Apache 2.0....
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-connectors/jk/native2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  all: build
  
  build: @APR_BUILD@ jk2-build
  
  clean: @APR_CLEAN@ jk2-clean 
  
  jk2-build:
  	( cd @WEBSERVER@ && make )
  
  jk2-clean:
  	( cd @WEBSERVER@ && make clean )
  
  apr-build:
  	( cd @APR_DIR@ && ./configure && make )
  
  apr-clean:
  	( cd @APR_DIR@ && make clean )
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>