summaryrefslogtreecommitdiff
path: root/www/tomcat41/files
diff options
context:
space:
mode:
Diffstat (limited to 'www/tomcat41/files')
-rw-r--r--www/tomcat41/files/patch-aa45
-rw-r--r--www/tomcat41/files/patch-ab10
-rw-r--r--www/tomcat41/files/tomcat.sh25
3 files changed, 0 insertions, 80 deletions
diff --git a/www/tomcat41/files/patch-aa b/www/tomcat41/files/patch-aa
deleted file mode 100644
index 3a2697af9305..000000000000
--- a/www/tomcat41/files/patch-aa
+++ /dev/null
@@ -1,45 +0,0 @@
---- conf/workers.properties.orig Tue Dec 12 22:36:26 2000
-+++ conf/workers.properties Sun May 20 16:06:33 2001
-@@ -40,20 +40,20 @@
- # installed tomcat. This is where you have your conf, webapps and lib
- # directories.
- #
--workers.tomcat_home=c:\jakarta-tomcat
-+workers.tomcat_home=%%PREFIX%%/tomcat
-
- #
- # workers.java_home should point to your Java installation. Normally
- # you should have a bin and lib directories beneath it.
- #
--workers.java_home=c:\jdk1.2.2
-+workers.java_home=%%PREFIX%%/jdk1.1.8
-
- #
- # You should configure your environment slash... ps=\ on NT and / on UNIX
- # and maybe something different elsewhere.
- #
--ps=\
--# ps=/
-+#ps=\
-+ps=/
-
- #
- #------ ADVANCED MODE ------------------------------------------------
-@@ -166,7 +166,7 @@
- #
- # Javac as available from Java2SE
- #
--worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar
-+#worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar
-
- #
- # Setting the command line for tomcat
-@@ -182,7 +182,7 @@
- #
- # This is for Java2
- #
--worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
-+#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
-
- #
- # And this is for jdk1.1.X
diff --git a/www/tomcat41/files/patch-ab b/www/tomcat41/files/patch-ab
deleted file mode 100644
index 4cd9c6810ff5..000000000000
--- a/www/tomcat41/files/patch-ab
+++ /dev/null
@@ -1,10 +0,0 @@
---- conf/server.xml.orig Tue Dec 12 22:36:20 2000
-+++ conf/server.xml Mon May 21 00:25:46 2001
-@@ -67,6 +67,7 @@
- -->
- <Logger name="tc_log"
- verbosityLevel = "INFORMATION"
-+ path="logs/tomcat.log"
- />
-
- <Logger name="servlet_log"
diff --git a/www/tomcat41/files/tomcat.sh b/www/tomcat41/files/tomcat.sh
deleted file mode 100644
index ac29e67ca817..000000000000
--- a/www/tomcat41/files/tomcat.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-JAVA_HOME=%%PREFIX%%/jdk1.1.8
-export JAVA_HOME
-TOMCAT_HOME=%%PREFIX%%/tomcat
-export TOMCAT_HOME
-
-case "$1" in
- start)
- if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then
- /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh start > /dev/null && echo ' tomcat'
- fi
- ;;
- stop)
- if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then
- /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh stop > /dev/null && echo ' tomcat'
- fi
- ;;
- *)
- echo ""
- echo "Usage: `basename $0` { start | stop }"
- echo ""
- exit 64
- ;;
-esac