2012-10-19 Keith Winstein <mosh-devel@mit.edu> * Version 1.2.3 released. * Security improvements: * Use OpenSSL AES implementation * Update AES-OCB implementation (Keegan McAllister) * Don't let bad server dictate IP (Felix Groebert) * New features: * Client hops ports to survive challenging client-side firewall * Server stops sending to save client power (Daniel Drown) * Set DiffServ code point and ECN-capable (Dave T\xc3\xa4ht) * Slow down if explicit congestion notification received * Warn about unattached Mosh sessions on login * Compatible with KDE konsole (uses BEL to terminate OSC) * Improved heuristic about color of predicted characters * Bug fixes: * Improved performance on systems with expensive time * No longer choke on "ffff::" address for hosts with IPv6 * More conservative MTU and datagram sizing * Platform support: * Build on Solaris and IllumOS (Timo Sirainen, Ira Cooper) * Build on ARM with gcc 4.7 (Alexander Chernyakhovsky) * Licensing changes: * Allow distribution on Apple App Stores * Allow linking with OpenSSL
28 lines
781 B
Makefile
28 lines
781 B
Makefile
# $NetBSD: Makefile,v 1.4 2012/11/29 07:19:35 wen Exp $
|
|
|
|
DISTNAME= mosh-1.2.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://github.com/downloads/keithw/mosh/
|
|
|
|
MAINTAINER= agc@NetBSD.org
|
|
HOMEPAGE= http://mosh.mit.edu/
|
|
COMMENT= Remote terminal application which allows roaming
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= p5-IO-tty>=1.08:../../devel/p5-IO-Tty
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES+= c c++
|
|
|
|
REPLACE_PERL+= scripts/mosh
|
|
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../devel/protobuf/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.zlib+= zlib>=1.2.0.4
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/terminfo.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|