JBoss Native SVN: r1839 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: mladen.turk(a)jboss.com
Date: 2008-09-16 08:38:32 -0400 (Tue, 16 Sep 2008)
New Revision: 1839
Modified:
trunk/build/unix/package.list
Log:
Add 2.0.6-dev target
Modified: trunk/build/unix/package.list
===================================================================
--- trunk/build/unix/package.list 2008-09-16 12:37:47 UTC (rev 1838)
+++ trunk/build/unix/package.list 2008-09-16 12:38:32 UTC (rev 1839)
@@ -5,6 +5,7 @@
jboss-native|2.0.3|TOMCAT_NATIVE_1_1_12|apr:v:1.2.8|apu:v:1.2.8|api:v:1.2.1|ssl:v:0.9.8e|zlib:v:1.2.3
jboss-native|2.0.4|TOMCAT_NATIVE_1_1_13|apr:v:1.2.8|apu:v:1.2.8|api:v:1.2.1|ssl:v:0.9.8e|zlib:v:1.2.3
jboss-native|2.0.5|TOMCAT_NATIVE_1_1_15|apr:v:1.2.8|apu:v:1.2.8|api:v:1.2.1|ssl:v:0.9.8h|zlib:v:1.2.3
+jboss-native|2.0.6-dev|trunk|apr:v:1.2.8|apu:v:1.2.8|api:v:1.2.1|ssl:v:0.9.8i|zlib:v:1.2.3
# SIGHT
jboss-sight|1.0.0|trunk|apr:v:1.2.9|apu:v:1.2.8|api:v:1.2.1
jboss-sight|1.0.1|trunk|apr:v:1.2.8|apu:v:1.2.8|api:v:1.2.1
17 years, 3 months
JBoss Native SVN: r1838 - trunk/build/patch.
by jbossnative-commits@lists.jboss.org
Author: mladen.turk(a)jboss.com
Date: 2008-09-16 08:37:47 -0400 (Tue, 16 Sep 2008)
New Revision: 1838
Added:
trunk/build/patch/openssl-0.9.8i.patch
Log:
Add patch for openssl /MD static build
Added: trunk/build/patch/openssl-0.9.8i.patch
===================================================================
--- trunk/build/patch/openssl-0.9.8i.patch (rev 0)
+++ trunk/build/patch/openssl-0.9.8i.patch 2008-09-16 12:37:47 UTC (rev 1838)
@@ -0,0 +1,20 @@
+--- util/pl/VC-32.pl
++++ util/pl/VC-32.pl
+@@ -31,7 +31,7 @@
+ $base_cflags=' /W3 /Gs0 /GF /Gy /nologo -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32 -DOPENSSL_SYSNAME_WIN32 -DOPENSSL_SYSNAME_WINNT -DUNICODE -D_UNICODE';
+ $base_cflags.=' -D_CRT_SECURE_NO_DEPRECATE'; # shut up VC8
+ $base_cflags.=' -D_CRT_NONSTDC_NO_DEPRECATE'; # shut up VC8
+- my $f = $shlib?' /MD':' /MT';
++ my $f = $shlib?' /MD':' /MD';
+ $lib_cflag='/Zl' if (!$shlib); # remove /DEFAULTLIBs from static lib
+ $opt_cflags=$f.' /Ox';
+ $dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG';
+@@ -96,7 +96,7 @@
+ $base_cflags=' /W3 /WX /Gs0 /GF /Gy /nologo -DOPENSSL_SYSNAME_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32';
+ $base_cflags.=' -D_CRT_SECURE_NO_DEPRECATE'; # shut up VC8
+ $base_cflags.=' -D_CRT_NONSTDC_NO_DEPRECATE'; # shut up VC8
+- my $f = $shlib?' /MD':' /MT';
++ my $f = $shlib?' /MD':' /MD';
+ $lib_cflag='/Zl' if (!$shlib); # remove /DEFAULTLIBs from static lib
+ $opt_cflags=$f.' /Ox /O2 /Ob2';
+ $dbg_cflags=$f.'d /Od -DDEBUG -D_DEBUG';
Property changes on: trunk/build/patch/openssl-0.9.8i.patch
___________________________________________________________________
Name: svn:eol-style
+ LF
17 years, 3 months
JBoss Native SVN: r1837 - in trunk/mod_cluster/test/java: org/jboss/mod_cluster and 1 other directory.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-16 08:04:22 -0400 (Tue, 16 Sep 2008)
New Revision: 1837
Modified:
trunk/mod_cluster/test/java/build.xml
trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java
Log:
Use -Dcluster=true to activate the test with mod_cluster listener.
Modified: trunk/mod_cluster/test/java/build.xml
===================================================================
--- trunk/mod_cluster/test/java/build.xml 2008-09-16 10:15:53 UTC (rev 1836)
+++ trunk/mod_cluster/test/java/build.xml 2008-09-16 12:04:22 UTC (rev 1837)
@@ -94,7 +94,7 @@
<copy file="conf/web.xml" todir="${test.classes}/conf"/>
<java dir="${test.classes}" classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
<arg value="org.jboss.mod_cluster.Maintest"/>
- <jvmarg value="-Dtest=${test}"/>
+ <jvmarg line="-Dcluster=${cluster} -Dtest=${test}"/>
<classpath refid="tomcat.test.classpath"/>
</java>
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java 2008-09-16 10:15:53 UTC (rev 1836)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java 2008-09-16 12:04:22 UTC (rev 1837)
@@ -51,10 +51,13 @@
TestSuite suite = new TestSuite();
server = (StandardServer) ServerFactory.getServer();
- // Read the -DJbossWEB=true/false.
- String jbossweb = System.getProperty("JbossWEB");
- if (jbossweb != null)
- isJBossWEB = false;
+ // Read the -Dcluster=true/false.
+ String jbossweb = System.getProperty("cluster");
+ if (jbossweb != null && jbossweb.equalsIgnoreCase("true")) {
+ System.out.println("Running tests with mod_cluster listener");
+ isJBossWEB = false;
+ } else
+ System.out.println("Running tests with jbossweb listener");
// Read the -Dtest="value".
String test = System.getProperty("test");
17 years, 3 months
JBoss Native SVN: r1836 - trunk/mod_cluster/src/main/java/org/jboss/modcluster/advertise/impl.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-16 06:15:53 -0400 (Tue, 16 Sep 2008)
New Revision: 1836
Modified:
trunk/mod_cluster/src/main/java/org/jboss/modcluster/advertise/impl/AdvertiseListenerImpl.java
Log:
If securityKey is not set skip the digest logic.
Modified: trunk/mod_cluster/src/main/java/org/jboss/modcluster/advertise/impl/AdvertiseListenerImpl.java
===================================================================
--- trunk/mod_cluster/src/main/java/org/jboss/modcluster/advertise/impl/AdvertiseListenerImpl.java 2008-09-15 21:33:06 UTC (rev 1835)
+++ trunk/mod_cluster/src/main/java/org/jboss/modcluster/advertise/impl/AdvertiseListenerImpl.java 2008-09-16 10:15:53 UTC (rev 1836)
@@ -345,6 +345,7 @@
boolean verifyDigest(String digest, String server, String date)
{
if (this.md == null) return true;
+ if (this.securityKey == null) return true; // Not set: No used
this.md.reset();
digestString(this.md, this.securityKey);
17 years, 3 months
JBoss Native SVN: r1835 - trunk/mod_cluster/test/java/org/jboss/mod_cluster.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-15 17:33:06 -0400 (Mon, 15 Sep 2008)
New Revision: 1835
Modified:
trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java
Log:
Add configuration stuff.
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java 2008-09-15 21:30:54 UTC (rev 1834)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java 2008-09-15 21:33:06 UTC (rev 1835)
@@ -80,6 +80,9 @@
lifecycle = jcluster;
} else {
pcluster = new org.jboss.modcluster.ClusterListener();
+ pcluster.setAdvertiseGroupAddress("232.0.0.2");
+ pcluster.setAdvertisePort(23364);
+ pcluster.setSsl(false);
lifecycle = pcluster;
}
17 years, 3 months
JBoss Native SVN: r1834 - in trunk/mod_cluster/test/java: org/jboss/mod_cluster and 1 other directory.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-15 17:30:54 -0400 (Mon, 15 Sep 2008)
New Revision: 1834
Modified:
trunk/mod_cluster/test/java/.classpath
trunk/mod_cluster/test/java/build.properties.default
trunk/mod_cluster/test/java/build.xml
trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java
trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java
Log:
Quick hack to test the listener in mod_cluster...
Modified: trunk/mod_cluster/test/java/.classpath
===================================================================
--- trunk/mod_cluster/test/java/.classpath 2008-09-15 21:29:48 UTC (rev 1833)
+++ trunk/mod_cluster/test/java/.classpath 2008-09-15 21:30:54 UTC (rev 1834)
@@ -11,5 +11,6 @@
<classpathentry kind="var" path="TOMCAT_LIBS_BASE/commons-logging-1.0.4/commons-logging.jar"/>
<classpathentry kind="var" path="TOMCAT_LIBS_BASE/commons-codec-1.3.jar"/>
<classpathentry kind="var" path="TOMCAT_LIBS_BASE/junit-4.5/junit-4.5.jar"/>
+ <classpathentry kind="lib" path="../../mod_cluster/target/mod_cluster-1.0.0-SNAPSHOT.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Modified: trunk/mod_cluster/test/java/build.properties.default
===================================================================
--- trunk/mod_cluster/test/java/build.properties.default 2008-09-15 21:29:48 UTC (rev 1833)
+++ trunk/mod_cluster/test/java/build.properties.default 2008-09-15 21:30:54 UTC (rev 1834)
@@ -38,3 +38,5 @@
base-jboss-ejb-api.home=${base.path}/${jboss-ejb-api.version}/lib
jboss-ejb-api.jar.loc=${base-jboss.loc}/jboss-ejb-api/${jboss-ejb-api.version}/jboss-ejb-api-${jboss-ejb-api.version}.jar
jboss-ejb-api.jar=${base.path}/${jboss-ejb-api.version}/jboss-ejb-api-spi-${jboss-ejb-api.version}.jar
+
+mod_cluster.jar=../../target/mod_cluster-1.0.0-SNAPSHOT.jar
Modified: trunk/mod_cluster/test/java/build.xml
===================================================================
--- trunk/mod_cluster/test/java/build.xml 2008-09-15 21:29:48 UTC (rev 1833)
+++ trunk/mod_cluster/test/java/build.xml 2008-09-15 21:30:54 UTC (rev 1834)
@@ -51,6 +51,9 @@
<pathelement location="${jboss-logging.jar}"/>
<pathelement location="${jboss-ejb-api.jar}"/>
+
+ <!-- Paul stuff -->
+ <pathelement location="${mod_cluster.jar}"/>
<!--
<fileset dir="${jbossweb.build}/bin/">
<include name="tomcat-juli.jar"/>
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java 2008-09-15 21:29:48 UTC (rev 1833)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/Maintest.java 2008-09-15 21:30:54 UTC (rev 1834)
@@ -43,12 +43,18 @@
public class Maintest extends TestCase {
static StandardServer server = null;
+ static boolean isJBossWEB = true;
public static void main( String args[] ) {
TestRunner.run(suite());
}
public static Test suite() {
TestSuite suite = new TestSuite();
server = (StandardServer) ServerFactory.getServer();
+
+ // Read the -DJbossWEB=true/false.
+ String jbossweb = System.getProperty("JbossWEB");
+ if (jbossweb != null)
+ isJBossWEB = false;
// Read the -Dtest="value".
String test = System.getProperty("test");
@@ -80,6 +86,9 @@
static StandardServer getServer() {
return server;
}
+ static boolean isJBossWEB() {
+ return isJBossWEB;
+ }
/* Print the service and connectors the server knows */
static void listServices() {
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java 2008-09-15 21:29:48 UTC (rev 1833)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java 2008-09-15 21:30:54 UTC (rev 1834)
@@ -52,7 +52,9 @@
int numbnodes = 10;
String [] nodenames = new String [numbnodes];
JBossWeb [] service = new JBossWeb[numbnodes];
- ClusterListener cluster = null;
+ ClusterListener jcluster = null;
+ LifecycleListener lifecycle = null;
+ org.jboss.modcluster.ClusterListener pcluster = null;
StandardServer server = Maintest.getServer();
for (int i=0; i<numbnodes; i++) {
@@ -70,12 +72,19 @@
}
}
- cluster = new ClusterListener();
- cluster.setAdvertiseGroupAddress("232.0.0.2");
- cluster.setAdvertisePort(23364);
- cluster.setSsl(false);
+ if (Maintest.isJBossWEB()) {
+ jcluster = new ClusterListener();
+ jcluster.setAdvertiseGroupAddress("232.0.0.2");
+ jcluster.setAdvertisePort(23364);
+ jcluster.setSsl(false);
+ lifecycle = jcluster;
+ } else {
+ pcluster = new org.jboss.modcluster.ClusterListener();
+ lifecycle = pcluster;
+ }
+
// SSL ?
- server.addLifecycleListener((LifecycleListener) cluster);
+ server.addLifecycleListener(lifecycle);
// Debug Stuff
Maintest.listServices();
@@ -92,7 +101,11 @@
}
// Read the result via INFO.
- String result = cluster.getProxyInfo();
+ String result = null;
+ if (Maintest.isJBossWEB())
+ result = jcluster.getProxyInfo();
+ else
+ result = pcluster.getProxyList();
ArrayList nodes = new ArrayList();
if (result != null) {
System.out.println(result);
@@ -153,7 +166,7 @@
for (int i=0; i<numbnodes; i++) {
server.removeService(service[i]);
}
- server.removeLifecycleListener(cluster);
+ server.removeLifecycleListener(lifecycle);
} catch (InterruptedException ex) {
ex.printStackTrace();
fail("can't stop service");
17 years, 3 months
JBoss Native SVN: r1833 - trunk/mod_cluster/test/java/org/jboss/mod_cluster.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-15 17:29:48 -0400 (Mon, 15 Sep 2008)
New Revision: 1833
Modified:
trunk/mod_cluster/test/java/org/jboss/mod_cluster/JBossWeb.java
Log:
Remove useless imports...
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/JBossWeb.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/JBossWeb.java 2008-09-15 19:26:30 UTC (rev 1832)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/JBossWeb.java 2008-09-15 21:29:48 UTC (rev 1833)
@@ -33,18 +33,12 @@
import java.io.FileInputStream;
import java.io.FileOutputStream;
-import java.net.InetAddress;
-import java.net.*;
-
import org.apache.catalina.startup.Embedded;
-import org.apache.catalina.Realm;
import org.apache.catalina.Engine;
import org.apache.catalina.Host;
import org.apache.catalina.Context;
import org.apache.catalina.*;
import org.apache.catalina.connector.Connector;
-import org.apache.tomcat.util.IntrospectionUtils;
-import org.apache.catalina.realm.MemoryRealm;
import org.apache.catalina.core.*;
import org.apache.catalina.startup.HostConfig;
17 years, 3 months
JBoss Native SVN: r1832 - trunk/mod_cluster/test/java.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-15 15:26:30 -0400 (Mon, 15 Sep 2008)
New Revision: 1832
Added:
trunk/mod_cluster/test/java/.classpath
trunk/mod_cluster/test/java/.project
Log:
Add eclipse files.
Added: trunk/mod_cluster/test/java/.classpath
===================================================================
--- trunk/mod_cluster/test/java/.classpath (rev 0)
+++ trunk/mod_cluster/test/java/.classpath 2008-09-15 19:26:30 UTC (rev 1832)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry excluding="Clients/JBWEB-117/src/" kind="src" path=""/>
+ <classpathentry kind="src" path="Clients/JBWEB-117/src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/2.0.3.GA/jboss-logging-spi-2.0.3.GA.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/2.1.1.CR7/jbossweb-2.1.1.CR7.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/2.1.1.CR7/servlet-api-2.1.1.CR7.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/4.2.1.GA/jboss-ejb-api-spi-4.2.1.GA.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/commons-httpclient-3.1/commons-httpclient-3.1.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/commons-logging-1.0.4/commons-logging.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/commons-codec-1.3.jar"/>
+ <classpathentry kind="var" path="TOMCAT_LIBS_BASE/junit-4.5/junit-4.5.jar"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: trunk/mod_cluster/test/java/.project
===================================================================
--- trunk/mod_cluster/test/java/.project (rev 0)
+++ trunk/mod_cluster/test/java/.project 2008-09-15 19:26:30 UTC (rev 1832)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>test_mod_cluster</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
17 years, 3 months
JBoss Native SVN: r1831 - trunk/mod_cluster/test/java/org/jboss/mod_cluster.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-09-15 07:59:22 -0400 (Mon, 15 Sep 2008)
New Revision: 1831
Modified:
trunk/mod_cluster/test/java/org/jboss/mod_cluster/NodeInfo.java
trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java
Log:
Arrange TestAddDel and print error message when errors.
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/NodeInfo.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/NodeInfo.java 2008-09-15 10:06:47 UTC (rev 1830)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/NodeInfo.java 2008-09-15 11:59:22 UTC (rev 1831)
@@ -43,8 +43,10 @@
{
boolean [] in = new boolean[nodenames.length];
- if (nodes == null || nodenames == null)
+ if (nodes == null || nodenames == null) {
+ System.out.println("No nodes or no names");
return false;
+ }
NodeInfo [] nodeinfos = new NodeInfo[nodes.size()];
for (int i=0; i<nodeinfos.length; i++) {
@@ -58,24 +60,48 @@
boolean hasit = false;
for (int j=0; j<nodeinfos.length; j++) {
if (nodeinfos[j].JVMRoute.equals(nodenames[i])) {
- if (in[i])
+ if (in[i]) {
+ System.out.println("Name " + nodenames[i] + "found twice!!!");
return false; // twice.
+ }
if (nodeinfos[j].removed == 0) {
in[i] = true;
hasit = true;
}
}
}
- if (!hasit)
+ if (!hasit) {
+ System.out.println("Name " + nodenames[i] + "not found!!!");
return false; // not found.
+ }
}
int i = 0;
for (int j=0; j<nodeinfos.length; j++) {
if (nodeinfos[j].removed == 0)
i++;
}
- if (i != nodenames.length)
+ if (i != nodenames.length) {
+ System.out.println("Too many route entries in httpd!!!");
return false; // Too many route entries in httpd.
+ }
return true;
}
+ static public void print(ArrayList nodes, String [] nodenames) {
+ if (nodes == null || nodes.size() == 0) {
+ System.out.println("No nodes");
+ return;
+ }
+ if (nodenames == null || nodenames.length == 0) {
+ System.out.println("No names???");
+ return;
+ }
+
+ for (int i=0; i<nodes.size(); i++) {
+ NodeInfo nodeinfo = (NodeInfo) nodes.get(i);
+ System.out.println("Node[" + i + "]: " + nodeinfo.JVMRoute + " remove: " + nodeinfo.removed);
+ }
+ for (int i=0; i<nodenames.length; i++) {
+ System.out.println("Name[" + i + "]: " + nodenames[i]);
+ }
+ }
}
Modified: trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java
===================================================================
--- trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java 2008-09-15 10:06:47 UTC (rev 1830)
+++ trunk/mod_cluster/test/java/org/jboss/mod_cluster/TestAddDel.java 2008-09-15 11:59:22 UTC (rev 1831)
@@ -138,9 +138,11 @@
// Check the nodes.
if (!clienterror) {
- if (!NodeInfo.check(nodes, nodenames))
+ if (!NodeInfo.check(nodes, nodenames)) {
System.out.println("getProxyInfo nodes incorrect");
+ NodeInfo.print(nodes, nodenames);
clienterror = true;
+ }
}
// Stop the jboss and remove the services.
17 years, 3 months
JBoss Native SVN: r1830 - trunk/build/patch.
by jbossnative-commits@lists.jboss.org
Author: mladen.turk(a)jboss.com
Date: 2008-09-15 06:06:47 -0400 (Mon, 15 Sep 2008)
New Revision: 1830
Modified:
trunk/build/patch/openssl-0.9.8h.patch
trunk/build/patch/tomcat-native-1.1.15.patch
Log:
Set properties for patch files"
Property changes on: trunk/build/patch/openssl-0.9.8h.patch
___________________________________________________________________
Name: svn:eol-style
+ LF
Property changes on: trunk/build/patch/tomcat-native-1.1.15.patch
___________________________________________________________________
Name: svn:eol-style
+ LF
17 years, 3 months