f03f2a6b4b
This fixes some important bugs and is therefore recommended for all users. Key changes: * Security: Directory traversal vulnerability with disk redirection (disallow /.. requests) * New maintainer: Peter Åstrand <astrand@...> * Brush cache support * Removed the hardcoded limit of the username length * Increased domain name length to 255 chars * Improved compatibility with PulseAudio/padsp * Cleaned up and documented the return values * Keyboard fix: avoid stuck keys in certain cases * Support for new pointers * License has been changed to GPLv3 * EWMH fixes for 64-bit machines * RandR support: automatically resize session if using relative screen size * Improved support for Windows 2008 Session Broker * Japanese keyboard map has been improved * New keyboard map: fr-bepo * Many stability fixes regarding smart card redirection * Windows 2008 R2 / 7: Fix sound playback when not using other redirections * Windows 2008 R2 / 7: Solve disk redirection read-only issues * Windows 2008 R2 / 7: Solve issue with recursive deletion * Avoid exit when printing, if lpr command terminates early
23 lines
551 B
Makefile
23 lines
551 B
Makefile
# $NetBSD: options.mk,v 1.4 2011/05/04 14:47:18 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.rdesktop
|
|
PKG_SUPPORTED_OPTIONS+= inet6 ssl xrandr
|
|
PKG_SUGGESTED_OPTIONS+= inet6 ssl xrandr
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Support both IPv6 and IPv4 connections.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --with-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mxrandr)
|
|
.include "../../x11/libXrandr/buildlink3.mk"
|
|
.endif
|