b62fef397b
* Use x11/gtkmm3 Changelog: Compatibility * open-vm-tools 10.2.0 is compatible with all supported versions of VMware vSphere ESXi 5.5 and later, VMware Workstation 14.0 and VMware Fusion 10.0. See VMware Compatibility Guide for more information. * Starting with VMware Tools version 10.2.0, Perl script based VMware Tools installation for FreeBSD has been discontinued. Going forward, FreeBSD systems are supported only through the open-vm-tools packages directly available from FreeBSD package repositories. FreeBSD packages for open-vm-tools 10.1.0 and later are available from FreeBSD package repositories. Resolved Issues * Summary page of the VM does not list the IP address of the VMs in the right order * Guest authentication fails with a SystemError fault when the requested password is expired * The free space reported in vim.vm.GuestInfo.DiskInfo for a Linux guest does not match with df command in the guest * VMware user process might not restart after upgrades of open-vm-tools
26 lines
661 B
Makefile
26 lines
661 B
Makefile
# $NetBSD: options.mk,v 1.7 2018/01/01 06:56:01 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.open-vm-tools
|
|
PKG_SUPPORTED_OPTIONS= icu x11
|
|
PKG_SUGGESTED_OPTIONS= icu x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= x11
|
|
|
|
.if !empty(PKG_OPTIONS:Micu)
|
|
.include "../../textproc/icu/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-icu
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
PLIST.x11= yes
|
|
MESSAGE_SRC+= MESSAGE.x11
|
|
. include "../../graphics/gdk-pixbuf2-xlib/buildlink3.mk"
|
|
. include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
. include "../../x11/gtkmm3/buildlink3.mk"
|
|
. include "../../x11/libXtst/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-x
|
|
.endif
|