94da4ae62b
rabbitmq-c v0.11.0 Added: rabbitmq-c-config.cmake is now generated rabbitmq-c can be compiled on Win32 using pthreads Add amqp_set_ssl_engine API to allow setting OpenSSL engine Add amqp_ssl_socket_set_key_engine API to allow setting OpenSSL engine Add support use of password-protected SSL keys Changed Update OpenSSL library initialization to current best practices Updates to OpenSSL to support v3.0.0 Fixed: OpenSSL symbol clash when compiling on Win32 Restore correct non-blocking behavior using OpenSSL v1.1.1 Disable harmless secure CRT compile warnings on Win32 Fix unused parameter warnings on Win32 Fix invalid format in generated pkg-config file Fix invalid AMQP_STATUS_HEARTBEAT_TIMEOUT Fix incorrect port when using --server flag in CLI tools
26 lines
747 B
Makefile
26 lines
747 B
Makefile
# $NetBSD: Makefile,v 1.18 2021/04/05 11:48:43 adam Exp $
|
|
|
|
DISTNAME= rabbitmq-c-0.11.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=alanxz/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/alanxz/rabbitmq-c
|
|
COMMENT= C-language AMQP client library for use with AMQP servers
|
|
LICENSE= mit
|
|
|
|
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c99
|
|
USE_TOOLS+= pkg-config
|
|
CMAKE_ARGS+= -DBUILD_TOOLS=ON
|
|
CMAKE_ARGS+= -DBUILD_TOOLS_DOCS=ON
|
|
CMAKE_ARGS+= -DENABLE_SSL_SUPPORT=ON
|
|
TEST_TARGET= test
|
|
|
|
.include "../../devel/popt/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|