Index: head/net/libzmq4/Makefile =================================================================== --- head/net/libzmq4/Makefile (revision 393664) +++ head/net/libzmq4/Makefile (revision 393665) @@ -1,51 +1,52 @@ # $FreeBSD$ PORTNAME= libzmq4 PORTVERSION= 4.1.2 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://download.zeromq.org/ DISTNAME= zeromq-${DISTVERSION} MAINTAINER= koobs@FreeBSD.org COMMENT= ZeroMQ core library (Version 4) LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= zmq-[0-9]* libzmq[^4]-[0-9]* USES= libtool pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes OPTIONS_DEFINE= CURVE DEBUG PGM OPTIONS_DEFAULT= CURVE PGM CURVE_DESC= CURVE security mechanism via libsodium PGM_DESC= Reliable multicast transport using PGM via OpenPGM CURVE_CONFIGURE_WITH= libsodium CURVE_LIB_DEPENDS= libsodium.so:${PORTSDIR}/security/libsodium DEBUG_CONFIGURE_ENABLE= debug PGM_CONFIGURE_WITH= pgm PGM_LIB_DEPENDS= libpgm.so:${PORTSDIR}/net/openpgm CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig CFLAGS+= -Wno-long-long MAKE_ENV= V=1 INSTALL_TARGET= install-strip .include .if ${PORT_OPTIONS:MDEBUG} WITH_DEBUG= yes .endif regression-test: build @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \ ${MAKEFILE} ${MAKE_ARGS} check) .include Index: head/net/libzmq4/files/patch-ipv6-connect =================================================================== --- head/net/libzmq4/files/patch-ipv6-connect (nonexistent) +++ head/net/libzmq4/files/patch-ipv6-connect (revision 393665) @@ -0,0 +1,20 @@ +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 Property changes on: head/net/libzmq4/files/patch-ipv6-connect ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property