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
95
96
97
|
--- ../jakarta-tomcat-5.0.28-src.orig/jakarta-tomcat-5/build.xml 2005-02-12 13:54:09.000000000 +0100
+++ jakarta-tomcat-5/build.xml 2005-02-13 00:29:52.167830424 +0100
@@ -129,6 +129,7 @@
<!-- ====================== DEPLOY: Copy Static Files =================== -->
<target name="deploy-static" depends="init">
+ <!--
<copy file="${jsp-api.jar}" todir="${tomcat.build}/common/lib"/>
<copy file="${servlet-api.jar}" todir="${tomcat.build}/common/lib"/>
@@ -147,7 +148,8 @@
<copy todir="${tomcat.build}/common/lib" file="${ant.jar}"/>
<copy todir="${tomcat.build}/common/lib" file="${ant-launcher.jar}"/>
- </target>
+ -->
+</target>
<!-- ====================== Build all components =================== -->
<target name="build-servletapi" unless="servletapi.build.notrequired" description="Build servlet API">
@@ -393,6 +395,7 @@
</classpath>
<include name="admin/**" />
</javac>
+
</target>
<target name="build-catalina" depends="init"
@@ -439,9 +442,10 @@
<target name="build" depends="init"
description="Builds all components">
+ <!--
<copy file="${commons-digester.jar}" todir="${tomcat.build}/server/lib"/>
<copy file="${commons-collections.jar}" todir="${tomcat.build}/common/lib"/>
-
+ -->
<antcall target="build-tomcatutil"/>
<antcall target="build-tomcatcoyote"/>
<antcall target="build-catalina"/>
@@ -563,9 +567,10 @@
</ant>
<!-- Precompiling and fixing webapps -->
+ <!--
<antcall target="build-webapps-precompile" />
<antcall target="fix-webapps" />
-
+ -->
</target>
<target name="fix-webapps" depends="init" >
@@ -798,10 +803,10 @@
<!-- ====================== Compat target =================== -->
<target name="compat" description="Create compatibility binaries for JREs before 1.4" >
-
+ <!--
<copy todir="${tomcat.compat}/common/endorsed" file="${xercesImpl.jar}"/>
<copy todir="${tomcat.compat}/common/endorsed" file="${xml-apis.jar}"/>
-
+ -->
</target>
<!-- ====================== DEPLOY: Deploy Components =================== -->
@@ -1547,6 +1552,7 @@
<copy file="LICENSE" tofile="${base.path}/LICENSE"/>
<!-- Downdown any sub package or tools needed. -->
+ <!--
<antcall target="downloadgz">
<param name="sourcefile" value="${commons-beanutils.loc}"/>
<param name="destfile" value="${commons-beanutils.jar}"/>
@@ -1593,7 +1599,6 @@
</antcall>
<antcall target="downloadgz">
- <!-- xerces2 brings 2 files, test for one of them -->
<param name="sourcefile" value="${xerces.loc}"/>
<param name="destfile" value="${xml-apis.jar}"/>
</antcall>
@@ -1655,14 +1660,12 @@
<param name="sourcefile" value="${saxpath.loc}"/>
<param name="destfile" value="${saxpath.jar}"/>
</antcall>
-
- <!-- Build the dependencies that are not yet released -->
+ -->
<antcall target="build-depends"/>
</target>
<target name="proxyflags">
- <!-- check proxy parameters. -->
<condition property="useproxy">
<equals arg1="${proxy.use}" arg2="on" />
</condition>
|