From 5f531b41f25694a64b90938f378d592b150dcd37 Mon Sep 17 00:00:00 2001 From: Valery Kartel Date: Wed, 22 Mar 2017 01:35:57 +0200 Subject: community/libcouchbase: moved from testing - would be need to build community/php7-couchbase --- community/libcouchbase/fix_socktest.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 community/libcouchbase/fix_socktest.patch (limited to 'community/libcouchbase/fix_socktest.patch') diff --git a/community/libcouchbase/fix_socktest.patch b/community/libcouchbase/fix_socktest.patch new file mode 100644 index 0000000000..2ee7cc68b0 --- /dev/null +++ b/community/libcouchbase/fix_socktest.patch @@ -0,0 +1,11 @@ +--- libcouchbase-2.5.6/tests/socktests/t_basic.cc ++++ libcouchbase-2.5.6-2/tests/socktests/t_basic.cc +@@ -48,7 +49,7 @@ + + static bool isRefused(lcbio_OSERR err) + { +- if (err == ECONNREFUSED || err == ECONNABORTED) { ++ if (err == ECONNREFUSED || err == ECONNABORTED || err == EAFNOSUPPORT) { + return true; + } + #ifdef _WIN32 -- cgit v1.2.3