diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/libzmq4/Makefile | 3 | ||||
-rw-r--r-- | net/libzmq4/distinfo | 4 | ||||
-rw-r--r-- | net/libzmq4/files/patch-ipv6-connect | 20 |
3 files changed, 3 insertions, 24 deletions
diff --git a/net/libzmq4/Makefile b/net/libzmq4/Makefile index 3741ea86fce5..176643634f37 100644 --- a/net/libzmq4/Makefile +++ b/net/libzmq4/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libzmq4 -PORTVERSION= 4.1.2 -PORTREVISION= 1 +PORTVERSION= 4.1.3 CATEGORIES= net MASTER_SITES= http://download.zeromq.org/ DISTNAME= zeromq-${DISTVERSION} diff --git a/net/libzmq4/distinfo b/net/libzmq4/distinfo index b5025c84c85a..b9a94542c14a 100644 --- a/net/libzmq4/distinfo +++ b/net/libzmq4/distinfo @@ -1,2 +1,2 @@ -SHA256 (zeromq-4.1.2.tar.gz) = f9162ead6d68521e5154d871bac304f88857308bb02366b81bb588497a345927 -SIZE (zeromq-4.1.2.tar.gz) = 1367275 +SHA256 (zeromq-4.1.3.tar.gz) = 61b31c830db377777e417235a24d3660a4bcc3f40d303ee58df082fcd68bf411 +SIZE (zeromq-4.1.3.tar.gz) = 1372069 diff --git a/net/libzmq4/files/patch-ipv6-connect b/net/libzmq4/files/patch-ipv6-connect deleted file mode 100644 index 482811f63335..000000000000 --- a/net/libzmq4/files/patch-ipv6-connect +++ /dev/null @@ -1,20 +0,0 @@ -15f9ee19cb895f7fb7b6d09ec64d4b82717ee1aa -diff --git src/socket_base.cpp src/socket_base.cpp -index bddbaf2..79044b1 100644 ---- src/socket_base.cpp -+++ src/socket_base.cpp -@@ -717,11 +717,12 @@ int zmq::socket_base_t::connect (const char *addr_) - // Following code is quick and dirty check to catch obvious errors, - // without trying to be fully accurate. - const char *check = address.c_str (); -- if (isalnum (*check) || isxdigit (*check)) { -+ if (isalnum (*check) || isxdigit (*check) || *check == '[') { - check++; - while (isalnum (*check) - || isxdigit (*check) -- || *check == '.' || *check == '-' || *check == ':'|| *check == ';') -+ || *check == '.' || *check == '-' || *check == ':'|| *check == ';' -+ || *check == ']') - check++; - } - // Assume the worst, now look for success |