diff options
Diffstat (limited to 'event-upstream.patch')
-rw-r--r-- | event-upstream.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/event-upstream.patch b/event-upstream.patch new file mode 100644 index 0000000..cf3d8a8 --- /dev/null +++ b/event-upstream.patch @@ -0,0 +1,53 @@ +From 935302065af825f82fbbc3e6e93eb83f408c9121 Mon Sep 17 00:00:00 2001 +From: Ruslan Osmanov <rrosmanov@gmail.com> +Date: Mon, 23 Apr 2018 15:15:29 +0700 +Subject: [PATCH] Fixed tests/12-serialization.phpt + +--- + package.xml | 23 +++++++++++++++++++---- + php5/php_event.h | 2 +- + php7/php_event.h | 2 +- + tests/12-serialization.phpt | 2 +- + 4 files changed, 22 insertions(+), 7 deletions(-) + +diff --git a/tests/12-serialization.phpt b/tests/12-serialization.phpt +index 2a8f15d..d5945df 100644 +--- a/tests/12-serialization.phpt ++++ b/tests/12-serialization.phpt +@@ -22,7 +22,7 @@ $http_connection = new $eventHttpConnectionClass($base, null, "0.0.0.0", 9099); + $config = new $eventConfigClass; + + if (class_exists($eventSslContextClass)) { +- $ssl_context = new $eventSslContextClass($eventSslContextClass::SSLv3_SERVER_METHOD, []); ++ $ssl_context = new $eventSslContextClass($eventSslContextClass::TLS_SERVER_METHOD, []); + serialize($ssl_context); + } + +-- +2.10.5 + +From 5827e342d81f196f35601a6227852e9a075f9df1 Mon Sep 17 00:00:00 2001 +From: Ruslan Osmanov <rrosmanov@gmail.com> +Date: Mon, 23 Apr 2018 15:36:51 +0700 +Subject: [PATCH] Fixed PHP 5.4-related issue in tests/12-serialization.phpt + +--- + tests/12-serialization.phpt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/tests/12-serialization.phpt b/tests/12-serialization.phpt +index d5945df..e37b2b1 100644 +--- a/tests/12-serialization.phpt ++++ b/tests/12-serialization.phpt +@@ -38,7 +38,7 @@ echo "1 - ok\n"; + + ///////////////////////////////////////////// + +-foreach ([ $base, $http, $http_request, $http_connection, $config, $listener ] as &$object) { ++foreach ([ $base, $http, $http_request, $http_connection, $config, $listener ] as $object) { + try { + serialize($object); + } catch (\Exception $e) { +-- +2.10.5 + |