8ad365df8c
freediameter (1.2.0) UNRELEASED; urgency=low * Major changes in the logging system to be more syslog and production friendly * New extension: dict_dcca_3gpp * New extension: dict_dcca_starent (Starent DCCA vendor-specific AVPs) * New extension: rt_ignore_dh (hide network topology by proxying Destination-Host). * New extension: rt_load_balance (load balancer based on pending queue size). * New extension: rt_busypeers. See doc/rt_busypeers.conf.sample. * New extension: dbg_msg_timings. Measures timing of message operations. * New extension: dbg_msg_dumps. Use to control hooks display. * New API (fd_hook_*) for extensions to control messages logging & profiling * New API (fd_stats_*) for extensions to monitor framework state (e.g. SNMP implem) * API change: all the fd_*_dump functions now return malloc'd strings instead of logging directly. * API change: callback parameter of fd_rt_out_register had its signature updated. * Updated dbg_monitoring extension to use the new API * New script to generate dictionary extensions from org file (see contrib/tools) * New compilation option: WORKAROUND_ACCEPT_INVALID_VSAI to improve compatibility with invalid Vendor-Specific-Application-Id AVPs received from some equipments (e.g. Cisco). * New compilation option: DISABLE_PEER_EXPIRY for use in test environments. * Extensions are now also searched in LD_LIBRARY_PATH. * Copy Proxy-Info AVP automatically in new answers. * Port value 0 allowed in configuration to disable local server (e.g. disable non-secure port). * API change: fd_msg_send_timeout now takes a separate callback for timeout situation. * Function changes: fd_msg_dump_* now split in three different type of output. * New test testmesg_stress to measure message parser performance * Fix termination of the framework to avoid failures. * Fix invalid timespec value in peer PSM appearing randomly (leading to crash). * Return DIAMETER_LOOP_DETECTED if local peer in the Route-Record list of a message. * Allow running without TLS configuration. * Upgraded SCTP code to comply with RFC 6458 * Using default secure Diameter port number 5658 as per RFC 6733 * Updated TLS code for performance improvements with new GNU TLS. * Fix interlocking problem when large number of requests were failed over. * New option in test_app.fdx extension for long messages payload. * Performance improvement in message sending code path. -- Sebastien Decugis <sdecugis@freediameter.net> Sat, 14 Sep 2013 18:08:07 +0800
39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2013/09/14 13:55:58 wiz Exp $
|
|
|
|
DISTNAME= 1.2.0
|
|
PKGNAME= freeDiameter-${DISTNAME}
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.freediameter.net/hg/freeDiameter/archive/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.freediameter.net/trac/
|
|
COMMENT= Open source Diameter protocol implementation
|
|
LICENSE= modified-bsd
|
|
|
|
DIST_SUBDIR= freeDiameter
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
USE_CMAKE= yes
|
|
CMAKE_ARGS+= -DDISABLE_SCTP:BOOL=ON
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= bison flex pkg-config
|
|
FLEX_REQD= 2.5.35
|
|
|
|
# needs libraries installed
|
|
#TEST_TARGET= test
|
|
|
|
.include "options.mk"
|
|
|
|
INSTALLATION_DIRS= share/examples/freeDiameter/single_host
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} *.* \
|
|
${DESTDIR}${PREFIX}/share/examples/freeDiameter
|
|
cd ${WRKSRC}/doc/single_host && ${INSTALL_DATA} *.* \
|
|
${DESTDIR}${PREFIX}/share/examples/freeDiameter/single_host
|
|
|
|
.include "../../devel/libidn/buildlink3.mk"
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../security/libgcrypt/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|