buildbot failure in on tomcat-9-trunk

2020-05-11 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-9-trunk while 
building tomcat. Full details are available at:
https://ci.apache.org/builders/tomcat-9-trunk/builds/231

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: asf946_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-9-commit' 
triggered this build
Build Source Stamp: [branch 9.0.x] d5134aa0b821041c9f29daebf1b468c79881153c
Blamelist: Filip Hanik 

BUILD FAILED: failed compile_1

Sincerely,
 -The Buildbot




-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat] branch 9.0.x updated: Ensure that the WsContextListener can be added and that reflection works

2020-05-11 Thread fhanik
This is an automated email from the ASF dual-hosted git repository.

fhanik pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
 new d5134aa  Ensure that the WsContextListener can be added and that 
reflection works
d5134aa is described below

commit d5134aa0b821041c9f29daebf1b468c79881153c
Author: Filip Hanik 
AuthorDate: Mon May 11 09:49:03 2020 -0700

Ensure that the WsContextListener can be added and that reflection works
---
 res/graal/build-tomcat-native-image.sh   |  4 +++-
 .../native-image/tomcat-reflection.json  | 12 ++--
 test/org/apache/catalina/startup/EmbeddedTomcat.java |  2 ++
 3 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/res/graal/build-tomcat-native-image.sh 
b/res/graal/build-tomcat-native-image.sh
index 0fc94f7..082e129 100755
--- a/res/graal/build-tomcat-native-image.sh
+++ b/res/graal/build-tomcat-native-image.sh
@@ -15,6 +15,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+set -e
+
 CURDIR=`pwd`
 
 # resolve links - $0 may be a softlink
@@ -53,7 +55,7 @@ native-image \
 -H:+ReportExceptionStackTraces \
 --allow-incomplete-classpath \
 --no-fallback \
--cp 
../embed/tomcat-embed-core.jar:../embed/tomcat-embed-websocket.jar:../embed/tomcat-embed-el.jar:tomcat-embedded-sample.jar
 \
+-cp 
../embed/tomcat-embed-core.jar:../embed/tomcat-embed-websocket.jar:../embed/tomcat-embed-el.jar:tomcat-embedded-sample.jar:../embed/annotations-api.jar
 \
 org.apache.catalina.startup.EmbeddedTomcat
 
 cd $CURDIR
\ No newline at end of file
diff --git 
a/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json 
b/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json
index 5907375..3df91d6 100644
--- a/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json
+++ b/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json
@@ -1,8 +1,8 @@
 [
-{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", "methods" 
: [{"name": "","parameterTypes":[] }] },
-{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointBase", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointServer", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.server.WsContextListener", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.server.WsFilter", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", 
"methods":[{"name":"","parameterTypes":[] }] }
+{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointBase", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointServer", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.server.WsContextListener", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.server.WsFilter", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true }
 ]
diff --git a/test/org/apache/catalina/startup/EmbeddedTomcat.java 
b/test/org/apache/catalina/startup/EmbeddedTomcat.java
index 3fd53e7..b594c5a 100644
--- a/test/org/apache/catalina/startup/EmbeddedTomcat.java
+++ b/test/org/apache/catalina/startup/EmbeddedTomcat.java
@@ -35,6 +35,7 @@ import org.apache.catalina.connector.Connector;
 import org.apache.juli.logging.LogFactory;
 import org.apache.tomcat.util.scan.StandardJarScanFilter;
 import org.apache.tomcat.util.scan.StandardJarScanner;
+import org.apache.tomcat.websocket.server.WsContextListener;
 
 @Ignore
 public class EmbeddedTomcat {
@@ -66,6 +67,7 @@ public class EmbeddedTomcat {
 CounterServlet counterServlet = new CounterServlet();
 Tomcat.addServlet(ctx, "counterServlet", counterServlet);
 ctx.addServletMappingDecoded("/", "counterServlet");
+ctx.addApplicationListener(WsContextListener.class.getName());
 
 tomcat.start();
 Thread.sleep(60*1000);


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org


[tomcat] branch master updated: Ensure that the WsContextListener can be added and that reflection works

2020-05-11 Thread fhanik
This is an automated email from the ASF dual-hosted git repository.

fhanik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
 new b5dc2dd  Ensure that the WsContextListener can be added and that 
reflection works
b5dc2dd is described below

commit b5dc2dd2396c6cdeaf5a8d422cd659812d0734e7
Author: Filip Hanik 
AuthorDate: Mon May 11 09:49:03 2020 -0700

Ensure that the WsContextListener can be added and that reflection works
---
 res/graal/build-tomcat-native-image.sh   |  4 +++-
 .../native-image/tomcat-reflection.json  | 12 ++--
 test/org/apache/catalina/startup/EmbeddedTomcat.java |  2 ++
 3 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/res/graal/build-tomcat-native-image.sh 
b/res/graal/build-tomcat-native-image.sh
index fc0f26d..cbc0db1 100755
--- a/res/graal/build-tomcat-native-image.sh
+++ b/res/graal/build-tomcat-native-image.sh
@@ -15,6 +15,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+set -e
+
 CURDIR=`pwd`
 
 # resolve links - $0 may be a softlink
@@ -53,7 +55,7 @@ native-image \
 -H:+ReportExceptionStackTraces \
 --allow-incomplete-classpath \
 --no-fallback \
--cp 
../embed/tomcat-embed-core.jar:../embed/tomcat-embed-websocket.jar:../embed/tomcat-embed-el.jar:tomcat-embedded-sample.jar
 \
+-cp 
../embed/tomcat-embed-core.jar:../embed/tomcat-embed-websocket.jar:../embed/tomcat-embed-el.jar:tomcat-embedded-sample.jar:../embed/annotations-api.jar
 \
 org.apache.catalina.startup.EmbeddedTomcat
 
 cd $CURDIR
\ No newline at end of file
diff --git 
a/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json 
b/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json
index 5907375..3df91d6 100644
--- a/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json
+++ b/res/graal/tomcat-embed-websocket/native-image/tomcat-reflection.json
@@ -1,8 +1,8 @@
 [
-{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", "methods" 
: [{"name": "","parameterTypes":[] }] },
-{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointBase", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointServer", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.server.WsContextListener", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.server.WsFilter", 
"allDeclaredMethods":true },
-{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", 
"methods":[{"name":"","parameterTypes":[] }] }
+{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointBase", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.pojo.PojoEndpointServer", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.server.WsContextListener", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.server.WsFilter", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true },
+{ "name":"org.apache.tomcat.websocket.server.WsHttpUpgradeHandler", 
"allDeclaredConstructors" : true, "allPublicConstructors" : true, 
"allDeclaredMethods" : true, "allPublicMethods" : true }
 ]
diff --git a/test/org/apache/catalina/startup/EmbeddedTomcat.java 
b/test/org/apache/catalina/startup/EmbeddedTomcat.java
index 869b707..5658291 100644
--- a/test/org/apache/catalina/startup/EmbeddedTomcat.java
+++ b/test/org/apache/catalina/startup/EmbeddedTomcat.java
@@ -35,6 +35,7 @@ import org.apache.catalina.connector.Connector;
 import org.apache.juli.logging.LogFactory;
 import org.apache.tomcat.util.scan.StandardJarScanFilter;
 import org.apache.tomcat.util.scan.StandardJarScanner;
+import org.apache.tomcat.websocket.server.WsContextListener;
 
 @Ignore
 public class EmbeddedTomcat {
@@ -66,6 +67,7 @@ public class EmbeddedTomcat {
 CounterServlet counterServlet = new CounterServlet();
 Tomcat.addServlet(ctx, "counterServlet", counterServlet);
 ctx.addServletMappingDecoded("/", "counterServlet");
+ctx.addApplicationListener(WsContextListener.class.getName());
 
 tomcat.start();
 Thread.sleep(60*1000);


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

[tomcat-native] branch master updated: Disable keylog callback support for LibreSSL

2020-05-11 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-native.git


The following commit(s) were added to refs/heads/master by this push:
 new 14f47ff  Disable keylog callback support for LibreSSL
14f47ff is described below

commit 14f47ffea3105db6f17bee4a029eaf73e94ddee4
Author: Michael Osipov 
AuthorDate: Mon May 11 16:21:41 2020 +0200

Disable keylog callback support for LibreSSL

LibreSSL (as of 3.1.1) does not provide SSL_CTX_set_keylog_callback().
Don't define HAVE_KEYLOG_CALLBACK in this case.
---
 native/include/ssl_private.h  | 2 +-
 xdocs/miscellaneous/changelog.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/native/include/ssl_private.h b/native/include/ssl_private.h
index d88e393..26495e4 100644
--- a/native/include/ssl_private.h
+++ b/native/include/ssl_private.h
@@ -241,7 +241,7 @@
 #define TLS_server_methodSSLv23_server_method
 #endif /* OPENSSL_VERSION_NUMBER < 0x1010L || 
defined(LIBRESSL_VERSION_NUMBER) */
 
-#if OPENSSL_VERSION_NUMBER >= 0x10101000L
+#if OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined(LIBRESSL_VERSION_NUMBER)
 #define HAVE_KEYLOG_CALLBACK
 #endif
 
diff --git a/xdocs/miscellaneous/changelog.xml 
b/xdocs/miscellaneous/changelog.xml
index 164437f..71cfd86 100644
--- a/xdocs/miscellaneous/changelog.xml
+++ b/xdocs/miscellaneous/changelog.xml
@@ -42,6 +42,9 @@
 
   Improve OS-specific header include for native thread id. (michaelo)
 
+
+  Disable keylog callback support for LibreSSL. (michaelo)
+
   
 
 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-native] branch master updated: Bump version to 1.2.25-dev

2020-05-11 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-native.git


The following commit(s) were added to refs/heads/master by this push:
 new ebf0f74  Bump version to 1.2.25-dev
ebf0f74 is described below

commit ebf0f74e35a6a27ffc68765a572306f53d8410c0
Author: Michael Osipov 
AuthorDate: Mon May 11 15:14:01 2020 +0200

Bump version to 1.2.25-dev
---
 build.properties.default   | 2 +-
 native/include/tcn_version.h   | 2 +-
 native/os/win32/libtcnative.rc | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/build.properties.default b/build.properties.default
index 8b32326..70ef79c 100644
--- a/build.properties.default
+++ b/build.properties.default
@@ -18,7 +18,7 @@
 # - Version Control Flags -
 version.major=1
 version.minor=2
-version.build=24
+version.build=25
 version.patch=0
 version.suffix=-dev
 
diff --git a/native/include/tcn_version.h b/native/include/tcn_version.h
index 2483044..b1cebfd 100644
--- a/native/include/tcn_version.h
+++ b/native/include/tcn_version.h
@@ -63,7 +63,7 @@ extern "C" {
 #define TCN_MINOR_VERSION   2
 
 /** patch level */
-#define TCN_PATCH_VERSION   24
+#define TCN_PATCH_VERSION   25
 
 /**
  *  This symbol is defined for internal, "development" copies of TCN. This
diff --git a/native/os/win32/libtcnative.rc b/native/os/win32/libtcnative.rc
index c7793f5..1eef9e5 100644
--- a/native/os/win32/libtcnative.rc
+++ b/native/os/win32/libtcnative.rc
@@ -20,7 +20,7 @@ LANGUAGE 0x9,0x1
  "See the License for the specific language governing " \
  "permissions and limitations under the License."
 
-#define TCN_VERSION "1.2.24"
+#define TCN_VERSION "1.2.25"
 1000 ICON "apache.ico"
 
 1001 DIALOGEX 0, 0, 252, 51
@@ -36,8 +36,8 @@ BEGIN
 END
 
 1 VERSIONINFO
- FILEVERSION 1,2,24,0
- PRODUCTVERSION 1,2,24,0
+ FILEVERSION 1,2,25,0
+ PRODUCTVERSION 1,2,25,0
  FILEFLAGSMASK 0x3fL
 #ifdef _DEBUG
  FILEFLAGS 0x1L


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 64419] Build problem with tomcat-native on FreeBSD 11.3/LibreSSL

2020-05-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64419

Michael Osipov  changed:

   What|Removed |Added

   Severity|normal  |regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 64419] Build problem with tomcat-native on FreeBSD 11.3/LibreSSL

2020-05-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64419

--- Comment #5 from Michael Osipov  ---
As soon as I revert b8649e81458194d70667952d9e26df82a79c773f I only see and the
code compiles

> ./include/ssl_private.h:220:9: warning: 'OPENSSL_VERSION' macro redefined 
> [-Wmacro-redefined]
> #define OPENSSL_VERSION  SSLEAY_VERSION
> ^
> /usr/local/include/openssl/crypto.h:329:9: note: previous definition is here
> #define OPENSSL_VERSION 0
> ^
> src/ssl.c:301:9: warning: implicit declaration of function 
> 'SSL_CTX_set_keylog_callback' is invalid in C99
>   [-Wimplicit-function-declaration]
> SSL_CTX_set_keylog_callback(ctx, ssl_keylog_callback);
> ^

It pretty much seems that the the change was incomplete -- as assumed.

Shall we revert for now?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 64419] Build problem with tomcat-native on FreeBSD 11.3/LibreSSL

2020-05-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64419

--- Comment #4 from Michael Osipov  ---
This is what LibreSSL 3.1.1 defines:

> [mosipov@mika-ion ~/Projekte/tomcat-native/native]$ grep -ri -E -e '#define 
> .+_version'  /usr/local/include/openssl/
> /usr/local/include/openssl/crypto.h:#define SSLEAY_VERSION_NUMBER   
> OPENSSL_VERSION_NUMBER
> /usr/local/include/openssl/crypto.h:#define SSLEAY_VERSION  0
> /usr/local/include/openssl/crypto.h:#define OPENSSL_VERSION 0
> /usr/local/include/openssl/opensslv.h:#define LIBRESSL_VERSION_NUMBER 
> 0x3010100fL
> /usr/local/include/openssl/opensslv.h:#define LIBRESSL_VERSION_TEXT   
> "LibreSSL 3.1.1"
> /usr/local/include/openssl/opensslv.h:#define OPENSSL_VERSION_NUMBER
> 0x2000L
> /usr/local/include/openssl/opensslv.h:#define OPENSSL_VERSION_TEXT  
> LIBRESSL_VERSION_TEXT
> /usr/local/include/openssl/opensslv.h:#define OPENSSL_VERSION_PTEXT " 
> part of " OPENSSL_VERSION_TEXT
> /usr/local/include/openssl/opensslv.h:#define SHLIB_VERSION_HISTORY ""
> /usr/local/include/openssl/opensslv.h:#define SHLIB_VERSION_NUMBER "1.0.0"

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 64419] Build problem with tomcat-native on FreeBSD 11.3/LibreSSL

2020-05-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64419

Michael Osipov  changed:

   What|Removed |Added

 CC||a...@freebsd.org,
   ||micha...@apache.org,
   ||rainer.j...@kippdata.de

--- Comment #3 from Michael Osipov  ---
OK, there are several issues here. They aren't FreeBSD specific, but the issue
is the incomplete LibreSSL coverage:

> ./include/ssl_private.h:220:9: warning: 'OPENSSL_VERSION' macro redefined 
> [-Wmacro-redefined]
> #define OPENSSL_VERSION  SSLEAY_VERSION
> ^
> /usr/local/include/openssl/crypto.h:329:9: note: previous definition is here
> #define OPENSSL_VERSION 0
> ^

The ifdef around this block assumes that LibreSSL at some point did not have
these definitions.

> src/ssl.c:301:9: warning: implicit declaration of function 
> 'SSL_CTX_set_keylog_callback' is invalid in C99
>   [-Wimplicit-function-declaration]
> SSL_CTX_set_keylog_callback(ctx, ssl_keylog_callback);
> ^

LibeSSL does not support this. This patch solves the issue:
> diff --git a/native/include/ssl_private.h b/native/include/ssl_private.h
> index d88e393d..26495e46 100644
> --- a/native/include/ssl_private.h
> +++ b/native/include/ssl_private.h
> @@ -241,7 +241,7 @@
>  #define TLS_server_methodSSLv23_server_method
>  #endif /* OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER) */
> 
> -#if OPENSSL_VERSION_NUMBER >= 0x10101000L
> +#if OPENSSL_VERSION_NUMBER >= 0x10101000L && 
> !defined(LIBRESSL_VERSION_NUMBER)
>  #define HAVE_KEYLOG_CALLBACK
>  #endif

> src/ssl.c:789:41: error: use of undeclared identifier 'thread_exit_key'; did 
> you mean 'pthread_exit'?
> err = apr_threadkey_private_create(&thread_exit_key, _ssl_thread_exit,
> ^~~
> pthread_exit
> /usr/include/pthread.h:215:7: note: 'pthread_exit' declared here
> voidpthread_exit(void *) __dead2;
> ^
> src/ssl.c:789:58: error: use of undeclared identifier '_ssl_thread_exit'
> err = apr_threadkey_private_create(&thread_exit_key, _ssl_thread_exit,
>  ^
> src/ssl.c:796:5: error: use of undeclared identifier 'threadkey_initialized'
> threadkey_initialized = 1;
> ^
> src/ssl.c:799:5: warning: implicit declaration of function 'ssl_thread_setup' 
> is invalid in C99
>   [-Wimplicit-function-declaration]
> ssl_thread_setup(tcn_global_pool);
> ^

As sad as it seems. With the ifdefs around threaded init and OpenSSL 1.1.0+ the
coverage of LibreSSL seems to be incomplete because LibreSSL reports OpenSSL
version 0.

To solve this properly, we need to do the following:

* Require a minimum LibreSSL
* Test for that LibreSSL version in ./configure
* Figure out whether LibreSSL inits threading itself like OpenSSL 1.1.0+
* Revise code blocks for LibreSSL compat:
> [mosipov@mika-ion ~/Projekte/tomcat-native/native]$ grep -r 
> "OPENSSL_VERSION_NUMBER < 0x1010L" .
> ./include/ssl_private.h:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./include/ssl_private.h:#endif /* OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER) */
> ./include/ssl_private.h:#if (OPENSSL_VERSION_NUMBER < 0x1010L) && ! 
> (defined(WIN32) || defined(WIN64))
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L && ! (defined(WIN32) || 
> defined(WIN64))
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L
> ./src/ssl.c:#if !defined(OPENSSL_NO_ENGINE) || OPENSSL_VERSION_NUMBER < 
> 0x1010L
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./src/ssl.c:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./src/sslcontext.c:#if OPENSSL_VERSION_NUMBER < 0x1010L
> ./src/sslcontext.c:#endif /* if OPENSSL_VERSION_NUMBER < 0x1010L */
> ./src/sslcontext.c:#if OPENSSL_VERSION_NUMBER < 0x1010L
> ./src/sslcontext.c:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./src/sslcontext.c:#else /* if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER) */
> ./src/sslcontext.c:#endif /* if OPENSSL_VERSION_NUMBER < 0x1010L */
> ./src/sslcontext.c:#if OPENSSL_VERSION_NUMBER < 0x1010L || 
> defined(LIBRESSL_VERSION_NUMBER)
> ./src/sslcon

svn commit: r39364 - /release/tomcat/tomcat-8/v8.5.53/

2020-05-11 Thread markt
Author: markt
Date: Mon May 11 11:23:40 2020
New Revision: 39364

Log:
Drop 8.5.53 from mirror network

Removed:
release/tomcat/tomcat-8/v8.5.53/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r39363 - /release/tomcat/tomcat-9/v9.0.33/

2020-05-11 Thread markt
Author: markt
Date: Mon May 11 11:23:19 2020
New Revision: 39363

Log:
Drop 9.0.33 from mirror network

Removed:
release/tomcat/tomcat-9/v9.0.33/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r39362 - /release/tomcat/tomcat-10/v10.0.0-M3/

2020-05-11 Thread markt
Author: markt
Date: Mon May 11 11:22:57 2020
New Revision: 39362

Log:
Drop 10.0.0-M3 from mirror network

Removed:
release/tomcat/tomcat-10/v10.0.0-M3/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Nexus: Promotion Completed

2020-05-11 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDeployer properties:"userAgent" = "maven-artifact/2.2.1 (Java 1.7.0_80; Windows 8.1 6.3)""userId" = "markt""ip" = "86.135.90.21"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/org/apache/tomcat/tomcat-i18n-de/8.5.55/tomcat-i18n-de-8.5.55.jar(SHA1: 78031df19e91800753b3a73fa6ca696aceeef2ce)/org/apache/tomcat/tomcat-i18n-de/8.5.55/tomcat-i18n-de-8.5.55.pom(SHA1: 2428881eaf650e35be6861453238e69007d16ce8)/org/apache/tomcat/tomcat-i18n-de/8.5.55/tomcat-i18n-de-8.5.55.jar.asc(SHA1: 544d555ecc79a5440a034616aa562f703b41126a)/org/apache/tomcat/tomcat-i18n-de/8.5.55/tomcat-i18n-de-8.5.55.pom.asc(SHA1: 4b927f0beb206a1abe3e44cb0d67407a1d2c9703)/org/apache/tomcat/tomcat-jni/8.5.55/tomcat-jni-8.5.55-sources.jar.asc(SHA1: 844a4d6b4878e84b2f17cc1de035bcd781bb1857)/org/apache/tomcat/tomcat-jni/8.5.55/tomcat-jni-8.5.55.pom(SHA1: 025710afac23800d42c9e375eab497657a90c173)/org/apache/tomcat/tomcat-jni/8.5.55/tomcat-jni-8.5.55.jar.asc(SHA1: 80471dac1af633020ed4813589aaed055a8e9de6)/org/apache/tomcat/tomcat-jni/8.5.55/tomcat-jni-8.5.55.pom.asc(SHA1: 635fa2d8c361bae87ea5f7b2726ea1b9e07c3855)/org/apache/tomcat/tomcat-jni/8.5.55/tomcat-jni-8.5.55-sources.jar(SHA1: b728fb3fb54907c66f731dcd0d61efc0b4dc03ae)/org/apache/tomcat/tomcat-jni/8.5.55/tomcat-jni-8.5.55.jar(SHA1: a8ddbc2b74e3f411e2051a43e67ebf9c3d6ccecd)/org/apache/tomcat/tomcat-juli/8.5.55/tomcat-juli-8.5.55-sources.jar.asc(SHA1: d0c9f88f6a37fa636e89dc53b8e8783424d311ba)/org/apache/tomcat/tomcat-juli/8.5.55/tomcat-juli-8.5.55.jar(SHA1: 3efd98706df760aaf4ff4155c29185230e1ee063)/org/apache/tomcat/tomcat-juli/8.5.55/tomcat-juli-8.5.55.pom(SHA1: c1e35b3217ff8bb15af021eae6fb2981e2a68a3e)/org/apache/tomcat/tomcat-juli/8.5.55/tomcat-juli-8.5.55-sources.jar(SHA1: f69d158337ba32730750ee7521133f66a5adf33e)/org/apache/tomcat/tomcat-juli/8.5.55/tomcat-juli-8.5.55.pom.asc(SHA1: 0e9fe1ee3c994f2e26bda7e4c64ee2719ca96bbf)/org/apache/tomcat/tomcat-juli/8.5.55/tomcat-juli-8.5.55.jar.asc(SHA1: d3c501981f5c9fba9647fb4356849d2f13ee1e5e)/org/apache/tomcat/tomcat-util/8.5.55/tomcat-util-8.5.55-sources.jar(SHA1: 8b34c207126c1c1a0fbcde6777cdba6ff3036db1)/org/apache/tomcat/tomcat-util/8.5.55/tomcat-util-8.5.55.pom(SHA1: d06a9adf197953ff8cfbd2685ca7740ed86320a4)/org/apache/tomcat/tomcat-util/8.5.55/tomcat-util-8.5.55.jar.asc(SHA1: 5b3bf8ffbff6fbf4f6aa387958a2f8248cb02f8f)/org/apache/tomcat/tomcat-util/8.5.55/tomcat-util-8.5.55.jar(SHA1: 762a8962eeb3c3f02e8338cf4ee53fba949cd1aa)/org/apache/tomcat/tomcat-util/8.5.55/tomcat-util-8.5.55.pom.asc(SHA1: 4c6b3df6393c4f549f28df54da5fd3d0cfb823ba)/org/apache/tomcat/tomcat-util/8.5.55/tomcat-util-8.5.55-sources.jar.asc(SHA1: 9d4342aaded5cbbb587d9a62008e8a566a148cda)/org/apache/tomcat/tomcat-catalina/8.5.55/tomcat-catalina-8.5.55.pom.asc(SHA1: b1537bce0a13c0fd4a32560936c145245100a42f)/org/apache/tomcat/tomcat-catalina/8.5.55/tomcat-catalina-8.5.55-sources.jar.asc(SHA1: 8fbc7b141fd0671cef264d6c99b3a7b360cd1537)/org/apache/tomcat/tomcat-catalina/8.5.55/tomcat-catalina-8.5.55.pom(SHA1: 20031fc08556c4bdfeb4468c9297b872c1d11846)/org/apache/tomcat/tomcat-catalina/8.5.55/tomcat-catalina-8.5.55-sources.jar(SHA1: eb8f93c7e191d8c0008799cab8543a25a9061fd1)/org/apache/tomcat/tomcat-catalina/8.5.55/tomcat-catalina-8.5.55.jar(SHA1: 8c8a16d519ee46d585ee73576fc0a296cdd60bee)/org/apache/tomcat/tomcat-catalina/8.5.55/tomcat-catalina-8.5.55.jar.asc(SHA1: 94fc6b40484c03171019b8c98d367228d8fffe3d)/org/apache/tomcat/tomcat-catalina-ws/8.5.55/tomcat-catalina-ws-8.5.55-sources.jar(SHA1: 0d14c731471ec9434fc628d7af0a7bd7b80f1d39)/org/apache/tomcat/tomcat-catalina-ws/8.5.55/tomcat-catalina-ws-8.5.55.jar.asc(SHA1: b506ad8bda57e85336afe1c18a6eacfc064ab59d)/org/apache/tomcat/tomcat-catalina-ws/8.5.55/tomcat-catalina-ws-8.5.55-sources.jar.asc(SHA1: 22bf15df90b3fbc6534950c6acd15b7e3dd60f50)/org/apache/tomcat/tomcat-catalina-ws/8.5.55/tomcat-catalina-ws-8.5.55.jar(SHA1: f11f8988944e912c77fc8a3312092116be3c156b)/org/apache/tomcat/tomcat-catalina-ws/8.5.55/tomcat-catalina-ws-8.5.55.pom.asc(SHA1: 95101df925082bcac66829b45b50046435aaf2cd)/org/apache/tomcat/tomcat-catalina-ws/8.5.55/tomcat-catalina-ws-8.5.55.pom(SHA1: 1a6b1d8f7d1e3443dbbb1ab1cbfdeab195f8c7d6)/org/apache/tomcat/tomcat-i18n-fr/8.5.55/tomcat-i18n-fr-8.5.55.pom.asc(SHA1: e33eb9c9b89bc95bf3d6e08e9bc09ea55874f12c)/org/apache/tomcat/tomcat-i18n-fr/8.5.55/tomcat-i18n-fr-8.5.55.jar(SHA1: fbbc6206e7dc8ca79910b0836c693d858ac1ff80)/org/apache/tomcat/tomcat-i18n-fr/8.5.55/tomcat-i18n-fr-8.5.55.pom(SHA1: 0d19d9e3f9e9bf2a1975ab5ed3f2af1c54be160c)/org/apache/tomcat/tomcat-i18n-fr/8.5.55/tomcat-i18n-fr-8.5.55.jar.asc(SHA1: 721fa3e3ff2685fc2a7f26ec6a3ccb65205566ee)/org/apache/tomcat/tomcat-jdbc/8.5.55/tomcat-jdbc-8.5.55.jar.asc(SHA1: 30d4acabfab79ac2407614ba38834cd992c00f9f)/org/apache/tomcat/tomcat-jdbc/8.5.55/tomcat-jdbc-8.5.55.jar(SHA1: f18e34ffb584f37a521d431c3b6988ab5631b03f)/org/apache/tomcat/tomcat-jdbc/8.5.55/tomcat-jdbc-8.5.55.pom.asc(SHA1: 7f393637a8f8b582

[tomcat] branch 8.5.x updated: Add release date for 8.5.55

2020-05-11 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
 new 4a2a730  Add release date for 8.5.55
4a2a730 is described below

commit 4a2a7308c129f318f5cf57b61472763df8e4c5dd
Author: Mark Thomas 
AuthorDate: Mon May 11 12:21:06 2020 +0100

Add release date for 8.5.55
---
 webapps/docs/changelog.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 37c99ee..5e01706 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -53,7 +53,7 @@
 
   
 
-
+
   
 
   


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r39361 - /dev/tomcat/tomcat-8/v8.5.55/ /release/tomcat/tomcat-8/v8.5.55/

2020-05-11 Thread markt
Author: markt
Date: Mon May 11 11:21:25 2020
New Revision: 39361

Log:
Release Apache Tomcat 8.5.55

Added:
release/tomcat/tomcat-8/v8.5.55/
  - copied from r39360, dev/tomcat/tomcat-8/v8.5.55/
Removed:
dev/tomcat/tomcat-8/v8.5.55/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Nexus: Promotion Completed

2020-05-11 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDeployer properties:"userAgent" = "maven-artifact/2.2.1 (Java 1.8.0_252; Windows 10 10.0)""userId" = "markt""ip" = "86.135.90.21"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/org/apache/tomcat/tomcat-i18n-de/9.0.35/tomcat-i18n-de-9.0.35.pom(SHA1: cc37bb4bfff7a85f1908517f26d80cb830fbc457)/org/apache/tomcat/tomcat-i18n-de/9.0.35/tomcat-i18n-de-9.0.35.pom.asc(SHA1: 1287a1325e4882656e95523d077e520052a849d9)/org/apache/tomcat/tomcat-i18n-de/9.0.35/tomcat-i18n-de-9.0.35.jar(SHA1: b8a8e7832d6ca9a0c78de27bb3da53a5b47b5811)/org/apache/tomcat/tomcat-i18n-de/9.0.35/tomcat-i18n-de-9.0.35.jar.asc(SHA1: da5788bd91d449cae5e4b660666b75201ddf943a)/org/apache/tomcat/tomcat-jni/9.0.35/tomcat-jni-9.0.35.jar.asc(SHA1: aee64262a82db8139a9c0e020a132b3e36716b75)/org/apache/tomcat/tomcat-jni/9.0.35/tomcat-jni-9.0.35.jar(SHA1: fe770d55e3af7be529f0a350eb944f5fa92d75f0)/org/apache/tomcat/tomcat-jni/9.0.35/tomcat-jni-9.0.35-sources.jar(SHA1: 5e5da548270087121d34413c881136c895b6cc29)/org/apache/tomcat/tomcat-jni/9.0.35/tomcat-jni-9.0.35.pom.asc(SHA1: e8409671d273a8efd20127866ed3de5359eeef57)/org/apache/tomcat/tomcat-jni/9.0.35/tomcat-jni-9.0.35.pom(SHA1: 0b1c4d05e6175627e3a58e458df75112fe95f119)/org/apache/tomcat/tomcat-jni/9.0.35/tomcat-jni-9.0.35-sources.jar.asc(SHA1: 0ec34a55a40be4f7418df33ff2db8912b26713d2)/org/apache/tomcat/tomcat-juli/9.0.35/tomcat-juli-9.0.35-sources.jar.asc(SHA1: df1721734660b6da3ed28af64e49e1dd62e5d62d)/org/apache/tomcat/tomcat-juli/9.0.35/tomcat-juli-9.0.35.jar.asc(SHA1: a905141427001c44e2f6c5859ef1923137ef62a1)/org/apache/tomcat/tomcat-juli/9.0.35/tomcat-juli-9.0.35.pom(SHA1: 4c7c46b9053dafce2bb7b756ce2bdf063d7fd59c)/org/apache/tomcat/tomcat-juli/9.0.35/tomcat-juli-9.0.35.jar(SHA1: 7751de04f20529bd00639d9026dd3c2e78f51d89)/org/apache/tomcat/tomcat-juli/9.0.35/tomcat-juli-9.0.35.pom.asc(SHA1: a694c5af06f7ce8a6f3e928d480f315cf1d3cde8)/org/apache/tomcat/tomcat-juli/9.0.35/tomcat-juli-9.0.35-sources.jar(SHA1: a0685c3e72c050801dd5a421f6860f12963801b3)/org/apache/tomcat/tomcat-util/9.0.35/tomcat-util-9.0.35.jar.asc(SHA1: 8c234466c222d60298bb1312be57505a2d0c14d5)/org/apache/tomcat/tomcat-util/9.0.35/tomcat-util-9.0.35.jar(SHA1: 1d9a898bfe9e2d676d644454d60432fc34866896)/org/apache/tomcat/tomcat-util/9.0.35/tomcat-util-9.0.35-sources.jar(SHA1: 94efd09ea484b74c8ffc2cd07bc69442832c75c7)/org/apache/tomcat/tomcat-util/9.0.35/tomcat-util-9.0.35.pom.asc(SHA1: 98ffe8f9be41c179e769ec841466a7a1ee2327c6)/org/apache/tomcat/tomcat-util/9.0.35/tomcat-util-9.0.35-sources.jar.asc(SHA1: 973e3c3d0e633076d534ce3b3b4418a95d563a9c)/org/apache/tomcat/tomcat-util/9.0.35/tomcat-util-9.0.35.pom(SHA1: 240512ca3cacba99d0d7f848265677ac50922e24)/org/apache/tomcat/tomcat-catalina/9.0.35/tomcat-catalina-9.0.35.jar.asc(SHA1: e0ba41421c8eb4e17bade65f90f638a446f8a3e4)/org/apache/tomcat/tomcat-catalina/9.0.35/tomcat-catalina-9.0.35.jar(SHA1: 8bf1bfc98636ee308aa2dc2a0936c9b5e2182bc8)/org/apache/tomcat/tomcat-catalina/9.0.35/tomcat-catalina-9.0.35.pom(SHA1: c2eaa5699df0656f2cb7e801231595e14dfdd3ef)/org/apache/tomcat/tomcat-catalina/9.0.35/tomcat-catalina-9.0.35-sources.jar.asc(SHA1: 2e3f38cf5308a762048af7d57244ef7391c36163)/org/apache/tomcat/tomcat-catalina/9.0.35/tomcat-catalina-9.0.35-sources.jar(SHA1: 8757131750793972a4d205d58420b6809c18ae8b)/org/apache/tomcat/tomcat-catalina/9.0.35/tomcat-catalina-9.0.35.pom.asc(SHA1: 06ed0d568aa78b3f7d8076dab538bb35acc4f23e)/org/apache/tomcat/tomcat-i18n-fr/9.0.35/tomcat-i18n-fr-9.0.35.pom.asc(SHA1: 4581edd1b422334f091cc0820fa11725f5373539)/org/apache/tomcat/tomcat-i18n-fr/9.0.35/tomcat-i18n-fr-9.0.35.jar.asc(SHA1: 917efe4412b934052ace74fbbc28801f4f08cf51)/org/apache/tomcat/tomcat-i18n-fr/9.0.35/tomcat-i18n-fr-9.0.35.pom(SHA1: dfe85e742588a234b5af5aa3a07c47404f453ec1)/org/apache/tomcat/tomcat-i18n-fr/9.0.35/tomcat-i18n-fr-9.0.35.jar(SHA1: b5dcebed47b8210f73a36f4c26288af9ada3dbbb)/org/apache/tomcat/tomcat-i18n-cs/9.0.35/tomcat-i18n-cs-9.0.35.pom.asc(SHA1: 1a1059d0d2b6f1916d2611fcbf6d60e02460a1ab)/org/apache/tomcat/tomcat-i18n-cs/9.0.35/tomcat-i18n-cs-9.0.35.jar.asc(SHA1: d18402a77873bb5c9db4c2db5bd81c12612cc2c1)/org/apache/tomcat/tomcat-i18n-cs/9.0.35/tomcat-i18n-cs-9.0.35.jar(SHA1: 9cb3dcdc1aa46f8af01aafbdb7c706417602d074)/org/apache/tomcat/tomcat-i18n-cs/9.0.35/tomcat-i18n-cs-9.0.35.pom(SHA1: d094340248937dff6a510fa4c62b7eb6a3735335)/org/apache/tomcat/tomcat-jdbc/9.0.35/tomcat-jdbc-9.0.35.jar(SHA1: 172701520176053533a5c8a539a8a80af8008ba1)/org/apache/tomcat/tomcat-jdbc/9.0.35/tomcat-jdbc-9.0.35-sources.jar(SHA1: b1330e4daa30210076bf0ff5b75453840a07d9d1)/org/apache/tomcat/tomcat-jdbc/9.0.35/tomcat-jdbc-9.0.35.jar.asc(SHA1: 2ac49fd1eb05651a33239323d498b3d865904553)/org/apache/tomcat/tomcat-jdbc/9.0.35/tomcat-jdbc-9.0.35-sources.jar.asc(SHA1: 091841c7c945a106f6bf136eff067621c5a3279b)/org/apache/tomcat/tomcat-jdbc/9.0.35/tomcat-jdbc-9.0.35.pom(SHA1: 19e7459de0f839406744c4fc212be4cc82ebe25f)/org/apache/tomcat/tomcat-jdbc/9.0.35/

[tomcat] branch 9.0.x updated: Add release date for 9.0.35

2020-05-11 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
 new 40f2696  Add release date for 9.0.35
40f2696 is described below

commit 40f2696287c17ef98328fd90838392cd1e056fe0
Author: Mark Thomas 
AuthorDate: Mon May 11 12:19:04 2020 +0100

Add release date for 9.0.35
---
 webapps/docs/changelog.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 55646c5..f8f1130 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -53,7 +53,7 @@
 
   
 
-
+
   
 
   


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r39360 - /dev/tomcat/tomcat-9/v9.0.35/ /release/tomcat/tomcat-9/v9.0.35/

2020-05-11 Thread markt
Author: markt
Date: Mon May 11 11:19:43 2020
New Revision: 39360

Log:
Release Apache Tomcat 9.0.35

Added:
release/tomcat/tomcat-9/v9.0.35/
  - copied from r39359, dev/tomcat/tomcat-9/v9.0.35/
Removed:
dev/tomcat/tomcat-9/v9.0.35/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Nexus: Promotion Completed

2020-05-11 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDeployer properties:"userAgent" = "maven-artifact/2.2.1 (Java 1.8.0_252; Windows 10 10.0)""userId" = "markt""ip" = "86.135.90.21"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/org/apache/tomcat/tomcat-i18n-de/10.0.0-M5/tomcat-i18n-de-10.0.0-M5.pom(SHA1: ee4cac9dfd58e8c0be2caa4ba42dbd66ba5b2e67)/org/apache/tomcat/tomcat-i18n-de/10.0.0-M5/tomcat-i18n-de-10.0.0-M5.jar(SHA1: 06ee7d864e1c6afc73c6644b0a40cdba0f79250c)/org/apache/tomcat/tomcat-i18n-de/10.0.0-M5/tomcat-i18n-de-10.0.0-M5.pom.asc(SHA1: 75bb5033b9d18ce7fe0ebd55f5aad391cc62fdf5)/org/apache/tomcat/tomcat-i18n-de/10.0.0-M5/tomcat-i18n-de-10.0.0-M5.jar.asc(SHA1: 1946bd9d9776e85e878a411aba54f15d5898fb15)/org/apache/tomcat/tomcat-jni/10.0.0-M5/tomcat-jni-10.0.0-M5-sources.jar.asc(SHA1: 12fcdb1bbb5ad4dc5aae80d877f4c01713433413)/org/apache/tomcat/tomcat-jni/10.0.0-M5/tomcat-jni-10.0.0-M5.jar.asc(SHA1: c5096e05f723bb355c7731a85ea3e713855db3aa)/org/apache/tomcat/tomcat-jni/10.0.0-M5/tomcat-jni-10.0.0-M5.jar(SHA1: da9d7721446577d331ed0edd9856ddeab156a821)/org/apache/tomcat/tomcat-jni/10.0.0-M5/tomcat-jni-10.0.0-M5-sources.jar(SHA1: 74c0c6aca77f6f1ce6ae83ca2b1c8c1a99720857)/org/apache/tomcat/tomcat-jni/10.0.0-M5/tomcat-jni-10.0.0-M5.pom(SHA1: 2053f87ead81a90f7e9aa3f12d6e604701524862)/org/apache/tomcat/tomcat-jni/10.0.0-M5/tomcat-jni-10.0.0-M5.pom.asc(SHA1: e6a9f213c496c5ece76232bb53e8f83c43297ee4)/org/apache/tomcat/tomcat-juli/10.0.0-M5/tomcat-juli-10.0.0-M5.jar(SHA1: 570b6c29f341dc46bf9d8a39af575c1921d50bf8)/org/apache/tomcat/tomcat-juli/10.0.0-M5/tomcat-juli-10.0.0-M5.pom(SHA1: 8f3ef6ba9c023fead815b98d971877c71361ad70)/org/apache/tomcat/tomcat-juli/10.0.0-M5/tomcat-juli-10.0.0-M5-sources.jar.asc(SHA1: 857c3a70d1bb1be1dbe3b23c7f92b2c01d4f9c85)/org/apache/tomcat/tomcat-juli/10.0.0-M5/tomcat-juli-10.0.0-M5-sources.jar(SHA1: a5665b4173dc9f17812076f53086baf8aec74f96)/org/apache/tomcat/tomcat-juli/10.0.0-M5/tomcat-juli-10.0.0-M5.jar.asc(SHA1: dac46ee64f453a2ae75dbbc3ca29878c81475c60)/org/apache/tomcat/tomcat-juli/10.0.0-M5/tomcat-juli-10.0.0-M5.pom.asc(SHA1: f92c3e39e1b820c80ffb1c53dcfc31f609219dff)/org/apache/tomcat/tomcat-util/10.0.0-M5/tomcat-util-10.0.0-M5.jar(SHA1: b62d8f787d8239ec807e70ec6dc4d035053554e4)/org/apache/tomcat/tomcat-util/10.0.0-M5/tomcat-util-10.0.0-M5-sources.jar(SHA1: 65b2d7789b141843e374c1920715296a5205adff)/org/apache/tomcat/tomcat-util/10.0.0-M5/tomcat-util-10.0.0-M5-sources.jar.asc(SHA1: 0e3533f1c691bfad71bf41bbdca5d00ee2a895be)/org/apache/tomcat/tomcat-util/10.0.0-M5/tomcat-util-10.0.0-M5.pom.asc(SHA1: 2bff1c35987d95220560bd70db5cd234bc6e009c)/org/apache/tomcat/tomcat-util/10.0.0-M5/tomcat-util-10.0.0-M5.pom(SHA1: 29a361a94cd94d07ba579cb802ea802e111aa29a)/org/apache/tomcat/tomcat-util/10.0.0-M5/tomcat-util-10.0.0-M5.jar.asc(SHA1: cebe04c72a16b704cfd0a3b33db09db1cdfd43ee)/org/apache/tomcat/tomcat-catalina/10.0.0-M5/tomcat-catalina-10.0.0-M5.jar(SHA1: 83997d867ea54f5e555a0865957d975875c5aa2d)/org/apache/tomcat/tomcat-catalina/10.0.0-M5/tomcat-catalina-10.0.0-M5.jar.asc(SHA1: d0b9cb59460e341544c5d4107328fcbb850c01a1)/org/apache/tomcat/tomcat-catalina/10.0.0-M5/tomcat-catalina-10.0.0-M5-sources.jar(SHA1: 0865c03bf987af010c1e50cb18091a15c7fecdd8)/org/apache/tomcat/tomcat-catalina/10.0.0-M5/tomcat-catalina-10.0.0-M5.pom.asc(SHA1: 601ead2fead7945200042b1c478d868d56dd9188)/org/apache/tomcat/tomcat-catalina/10.0.0-M5/tomcat-catalina-10.0.0-M5.pom(SHA1: 78376ef2f18b2b5dd42df428b63abb047e5c7b0a)/org/apache/tomcat/tomcat-catalina/10.0.0-M5/tomcat-catalina-10.0.0-M5-sources.jar.asc(SHA1: be4fc9b37a89b71fdbf644d7d1e3b411e6639402)/org/apache/tomcat/tomcat-i18n-fr/10.0.0-M5/tomcat-i18n-fr-10.0.0-M5.pom(SHA1: 60a5c4d1f66195e3d840994c547678968b62b946)/org/apache/tomcat/tomcat-i18n-fr/10.0.0-M5/tomcat-i18n-fr-10.0.0-M5.pom.asc(SHA1: fede8a93253e8e6685dcab4d609fc9f1ff9e1db1)/org/apache/tomcat/tomcat-i18n-fr/10.0.0-M5/tomcat-i18n-fr-10.0.0-M5.jar(SHA1: e3c42bca6800a09c5ef6019d05a9d1d9b2e48ba8)/org/apache/tomcat/tomcat-i18n-fr/10.0.0-M5/tomcat-i18n-fr-10.0.0-M5.jar.asc(SHA1: 91c499c43213b7ac60ac064b490f4910eff5e46b)/org/apache/tomcat/tomcat-i18n-cs/10.0.0-M5/tomcat-i18n-cs-10.0.0-M5.jar(SHA1: 8623878e38a601d49bb4953fdc78c6c3a4c42c7b)/org/apache/tomcat/tomcat-i18n-cs/10.0.0-M5/tomcat-i18n-cs-10.0.0-M5.pom.asc(SHA1: 035eb9262fcd3ae9115e50d374c872e7b41a0e73)/org/apache/tomcat/tomcat-i18n-cs/10.0.0-M5/tomcat-i18n-cs-10.0.0-M5.jar.asc(SHA1: 148552fd86c11792d0cdd7922fe2d0a72b8eda32)/org/apache/tomcat/tomcat-i18n-cs/10.0.0-M5/tomcat-i18n-cs-10.0.0-M5.pom(SHA1: 1948db185c60aa3a8f4297a00aa326356a126c88)/org/apache/tomcat/tomcat-jdbc/10.0.0-M5/tomcat-jdbc-10.0.0-M5.jar(SHA1: 09250c6c3ec13421d626998104adea1a9917b6a7)/org/apache/tomcat/tomcat-jdbc/10.0.0-M5/tomcat-jdbc-10.0.0-M5.pom(SHA1: 7940a10cefb07a8a1e8b66eced94f06f5f35d9b8)/org/apache/tomcat/tomcat-jdbc/10.0.0-M5/tomcat-jdbc-10.0.0-M5-sources.jar.asc(SHA1: bb0554f9d7b8018fa213eed7e06c8511364caba5)/org/apache/tomcat/tomcat-jdbc/1

svn commit: r39359 - /dev/tomcat/tomcat-10/v10.0.0-M5/ /release/tomcat/tomcat-10/v10.0.0-M5/

2020-05-11 Thread markt
Author: markt
Date: Mon May 11 11:16:46 2020
New Revision: 39359

Log:
Release Apache Tomcat 10.0.0-M5

Added:
release/tomcat/tomcat-10/v10.0.0-M5/
  - copied from r39358, dev/tomcat/tomcat-10/v10.0.0-M5/
Removed:
dev/tomcat/tomcat-10/v10.0.0-M5/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat] branch master updated: Add release date for 10.0.0-M5

2020-05-11 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
 new 4277a96  Add release date for 10.0.0-M5
4277a96 is described below

commit 4277a9681fe28a9e97e2ebccead22700863a4e84
Author: Mark Thomas 
AuthorDate: Mon May 11 12:13:41 2020 +0100

Add release date for 10.0.0-M5
---
 webapps/docs/changelog.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 41fcde9..ee765e8 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -53,7 +53,7 @@
 
   
 
-
+
   
 
   


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE][RESULT] Release Apache Tomcat 8.5.55

2020-05-11 Thread Mark Thomas
The following votes were cast:

Binding:
+1: markt, remm, csutherl, schultz, mgrigorov

No other votes were cast.

The vote therefore passes.

Thanks to everyone who contributed to this release.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE][RESULT] Release Apache Tomcat 9.0.35

2020-05-11 Thread Mark Thomas
The following votes were cast:

Binding:
+1: markt, remm, csutherl, mgrivorov

No other votes were cast. The vote therefore passes.

Thanks to everyone who contributed to this release.

Mark



On 05/05/2020 22:41, Mark Thomas wrote:
> The proposed Apache Tomcat 9.0.35 release is now available for voting.
> 
> The major changes compared to the 9.0.34 release are:
> 
> - Improve the handling of requests that use an expectation. Do not
>   disable keep-alive where the response has a non-2xx status code
>   but the request body has been fully read.
> 
> - Change default value separator for property replacement to ":-"
>   due to possible conflicts. The syntax is now "${name:-default}".
> 
> - Update the packaged version of the Tomcat Native Library to 1.2.24.
> 
> Along with lots of other bug fixes and improvements.
> 
> For full details, see the changelog:
> https://ci.apache.org/projects/tomcat/tomcat9/docs/changelog.html
> 
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.35/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1266/
> The tag is:
> https://github.com/apache/tomcat/tree/9.0.35
> fc2c65d390444d75412855ad0de8b878018d02dc
> 
> The proposed 9.0.35 release is:
> [ ] Broken - do not release
> [ ] Stable - go ahead and release as 9.0.35
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
> 

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE][RESULT] Release Apache Tomcat 10.0.0-M5

2020-05-11 Thread Mark Thomas
The following votes were cast:

Binding:
+1: remm, markt, csutherl, mgrigorov

No other votes were cast.

The vote therefore passes.

Thanks to everyone who contributed to this release.

Mark



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 64419] Build problem with tomcat-native on FreeBSD 11.3/LibreSSL

2020-05-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64419

--- Comment #2 from Michael Osipov  ---
As previously discussed with gessel and the Port maintainer of libtcnative, the
code works with OpenSSL. We don't have an official position no LibreSSL.

I will look into this later this day.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org