svn commit: r449661 - head/emulators/open-vm-tools

Jan Beich jbeich at FreeBSD.org
Mon Sep 11 17:17:21 UTC 2017


Author: jbeich
Date: Mon Sep 11 17:17:19 2017
New Revision: 449661
URL: https://svnweb.freebsd.org/changeset/ports/449661

Log:
  emulators/open-vm-tools: unbreak with ICU >= 59
  
  stringxx/string.cc:927:23: error: use of undeclared identifier 'Unicode_ToTitle'
     return CopyAndFree(Unicode_ToTitle(c_str(), locale), free);
                        ^
  
  PR:		222225

Modified:
  head/emulators/open-vm-tools/Makefile   (contents, props changed)

Modified: head/emulators/open-vm-tools/Makefile
==============================================================================
--- head/emulators/open-vm-tools/Makefile	Mon Sep 11 15:58:31 2017	(r449660)
+++ head/emulators/open-vm-tools/Makefile	Mon Sep 11 17:17:19 2017	(r449661)
@@ -4,6 +4,7 @@
 PORTNAME=		open-vm-tools
 PORTVERSION=		${RELEASE_VER}
 DISTVERSIONPREFIX=	stable-
+PORTREVISION=		1
 PORTEPOCH=		2
 CATEGORIES=		emulators
 
@@ -45,7 +46,9 @@ OPENSSL_CONFIGURE_WITH=	ssl
 WRKSRC_SUBDIR=		open-vm-tools
 
 GNU_CONFIGURE=		yes
-USES=			autoreconf:-iv fuse gettext-runtime kmod libtool localbase pathfix pkgconfig
+USES=			autoreconf:-iv compiler:c++11-lib fuse gettext-runtime \
+			kmod libtool localbase pathfix pkgconfig
+USE_CXXSTD=		gnu++11
 USE_GNOME=		glib20
 
 USE_GITHUB=		yes


More information about the svn-ports-all mailing list