File: README

package info (click to toggle)
libapache-mod-jk 1%3A1.2.48-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 17,448 kB
  • sloc: ansic: 98,609; xml: 14,535; sh: 10,142; cpp: 4,222; java: 1,921; perl: 1,256; makefile: 815; pascal: 617; awk: 59
file content (94 lines) | stat: -rw-r--r-- 3,198 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
ABOUT
-----

This is the ISAPI redirector (IIS plug-in) that enables IIS to pass selected
requests to Tomcat over the AJP protocol.


REQUIREMENT
-----------

To build the ISAPI redirector you will need to create the following build
environment:

- Git client
- Subversion client
- Mladen's Custom Microsoft Compiler Toolkit Compilation  
    https://github.com/mturk/cmsc (cb6be932c8c95a46262a64a89e68aae620dfdcee)  
- Windows SDK  
    No documentation  
    No samples  
    Complete set of developer tools  
- Windows DDK  
    Build environments  
    Tools  
- Compile as per <cmsc-root>/tools/README.txt  
- Install Perl as per <cmsc-root>/tools/README.txt  
- Java 7 (releases only, can be replaced with any zip tool)


BUILDING
--------
 
Obtain the source code:

  c:
  cd \
  git clone  https://github.com/apache/tomcat-connectors.git tomcat-jk-1.2.x
  cd tomcat-jk-1.2.x\native\iis
 

Build  isapi_redirector.dll:

  c:\cmsc\setenv.bat /x86 
  nmake -f Makefile.x86
 
  c:\cmsc\setenv.bat /x64
  nmake -f Makefile.amd64

Tomcat isapi_redirect DLLs may then be found in
C:\tomcat-jk-1.2.x\native\iis\Release_[amd64|x86].



RELEASING
---------

Construct the binary distributions    

  set VER=1.2.48
  mkdir tomcat-connectors-%VER%-windows-i386-iis
  copy ..\LICENSE tomcat-connectors-%VER%-windows-i386-iis\
  copy ..\NOTICE tomcat-connectors-%VER%-windows-i386-iis\
  copy README tomcat-connectors-%VER%-windows-i386-iis\
  copy Release_x86\isapi_redirect.dll tomcat-connectors-%VER%-windows-i386-iis\
  mkdir tomcat-connectors-%VER%-windows-x86_64-iis
  copy ..\LICENSE tomcat-connectors-%VER%-windows-x86_64-iis\
  copy ..\NOTICE tomcat-connectors-%VER%-windows-x86_64-iis\
  copy README tomcat-connectors-%VER%-windows-x86_64-iis\
  copy Release_amd64\isapi_redirect.dll tomcat-connectors-%VER%-windows-x86_64-iis\
  mkdir tomcat-connectors-%VER%-windows-i386-symbols
  copy ..\LICENSE tomcat-connectors-%VER%-windows-i386-symbols
  copy ..\NOTICE tomcat-connectors-%VER%-windows-i386-symbols
  copy README tomcat-connectors-%VER%-windows-i386-symbols\
  copy Release_x86\isapi_redirect.pdb tomcat-connectors-%VER%-windows-i386-symbols\
  mkdir tomcat-connectors-%VER%-windows-x86_64-symbols
  copy ..\LICENSE tomcat-connectors-%VER%-windows-x86_64-symbols
  copy ..\NOTICE tomcat-connectors-%VER%-windows-x86_64-symbols
  copy README tomcat-connectors-%VER%-windows-x86_64-symbols\
  copy Release_amd64\isapi_redirect.pdb tomcat-connectors-%VER%-windows-x86_64-symbols\
  SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_71   
  set PATH=%PATH%;%JAVA_HOME%\bin
  cd tomcat-connectors-%VER%-windows-i386-iis
  jar -cMf ..\tomcat-connectors-%VER%-windows-i386-iis.zip *
  cd ..\tomcat-connectors-%VER%-windows-x86_64-iis
  jar -cMf ..\tomcat-connectors-%VER%-windows-x86_64-iis.zip *
  cd ..\tomcat-connectors-%VER%-windows-i386-symbols
  jar -cMf ..\tomcat-connectors-%VER%-windows-i386-symbols.zip *
  cd ..\tomcat-connectors-%VER%-windows-x86_64-symbols
  jar -cMf ..\tomcat-connectors-%VER%-windows-x86_64-symbols.zip *
 
The Windows binary distributions may then be found in
C:\tomcat-jk-1.2.x\native\iis

These need to be signed and hashed before uploading for the release vote.