3b87ba0f5c
0MQ version 4.0.5 stable, released on 2014/10/14 ================================================ * Fixed #1191; CURVE mechanism does not verify short term nonces. * Fixed #1190; stream_engine is vulnerable to downgrade attacks. * Fixed #1088; assertion failure for WSAENOTSOCK on Windows. * Fixed #1015; race condition while connecting inproc sockets. * Fixed #994; bump so library number to 4.0.0 * Fixed #939, assertion failed: !more (fq.cpp:99) after many ZAP requests. * Fixed #872; lost first part of message over inproc://. * Fixed #797, keep-alive on Windows.
38 lines
823 B
Makefile
38 lines
823 B
Makefile
# $NetBSD: Makefile,v 1.20 2014/11/15 01:59:37 obache Exp $
|
|
|
|
DISTNAME= zeromq-4.0.5
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= http://download.zeromq.org/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.zeromq.org/
|
|
COMMENT= The ZeroMQ messaging library
|
|
LICENSE= gnu-lgpl-v3
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= src/libzmq.pc.in
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
.if !empty(CC_VERSION:Mgcc-*)
|
|
CXXFLAGS+= -std=gnu++0x
|
|
.endif
|
|
|
|
.if !empty(CC_VERSION:Mclang-*)
|
|
CXXFLAGS+= -std=gnu++11
|
|
.endif
|
|
|
|
.include "../../security/libsodium/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-libsodium=${BUILDLINK_PREFIX.libsodium}
|
|
|
|
.if ${OPSYS} == "Linux" || ${OPSYS} == "SunOS"
|
|
.include "../../devel/libuuid/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|