7acebfec37
* A bug with hash_fold() regarding incoming IPv4 and IPv6 source addresses has been fixed. The "hash" group mechanism is now working as expected. * Buffering has been disabled for interactive shell IO. A new "assign" command has been added to allow changing of the host:port assignment of a channel (only if disabled). A locking bug has been fixed. * A new option -6 has been added to force IPv6 bind. * Problems with setting IPV6_V6ONLY socket option are now handled more nicely with a syslog warning message. * Balance now compiles also on systems where IPV6_V6ONLY is undefined (like some Solaris systems). * IPv6 support on the listening side has been added. MAXCHANNELS in balance.h has been increased to 64. Ok aja@ brad@
32 lines
720 B
Makefile
32 lines
720 B
Makefile
# $OpenBSD: Makefile,v 1.16 2012/12/11 18:15:13 gonzalo Exp $
|
|
|
|
COMMENT= TCP proxy with load balancing and failover mechanisms
|
|
|
|
DISTNAME= balance-3.54
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.inlab.de/balance.html
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= http://www.inlab.de/
|
|
|
|
MAKE_FLAGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
ALL_TARGET= balance
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/balance ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/balance.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/balance
|
|
${INSTALL_DATA} ${WRKSRC}/balance.pdf ${PREFIX}/share/doc/balance
|
|
|
|
.include <bsd.port.mk>
|