svn commit: r546031 - in head/emulators/open-vm-tools: . files

Josh Paetzel jpaetzel at FreeBSD.org
Mon Aug 24 00:40:42 UTC 2020


Author: jpaetzel
Date: Mon Aug 24 00:40:41 2020
New Revision: 546031
URL: https://svnweb.freebsd.org/changeset/ports/546031

Log:
  Fix compilation in a -fno-common universe

Added:
  head/emulators/open-vm-tools/files/patch-services_plugins_dndcp_copyPasteCompatX11.c   (contents, props changed)
Modified:
  head/emulators/open-vm-tools/Makefile

Modified: head/emulators/open-vm-tools/Makefile
==============================================================================
--- head/emulators/open-vm-tools/Makefile	Mon Aug 24 00:35:30 2020	(r546030)
+++ head/emulators/open-vm-tools/Makefile	Mon Aug 24 00:40:41 2020	(r546031)
@@ -3,6 +3,7 @@
 
 PORTNAME=		open-vm-tools
 PORTVERSION=		${RELEASE_VER}
+PORTREVISION=		1
 DISTVERSIONPREFIX=	stable-
 PORTEPOCH=		2
 CATEGORIES=		emulators

Added: head/emulators/open-vm-tools/files/patch-services_plugins_dndcp_copyPasteCompatX11.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/open-vm-tools/files/patch-services_plugins_dndcp_copyPasteCompatX11.c	Mon Aug 24 00:40:41 2020	(r546031)
@@ -0,0 +1,16 @@
+--- services/plugins/dndcp/copyPasteCompatX11.c.orig	2020-08-24 00:33:01 UTC
++++ services/plugins/dndcp/copyPasteCompatX11.c
+@@ -73,11 +73,11 @@ GdkAtom GDK_SELECTION_CLIPBOARD;
+ #endif
+ 
+ #ifndef GDK_SELECTION_TYPE_TIMESTAMP
+-GdkAtom GDK_SELECTION_TYPE_TIMESTAMP;
++extern GdkAtom GDK_SELECTION_TYPE_TIMESTAMP;
+ #endif
+ 
+ #ifndef GDK_SELECTION_TYPE_UTF8_STRING
+-GdkAtom GDK_SELECTION_TYPE_UTF8_STRING;
++extern GdkAtom GDK_SELECTION_TYPE_UTF8_STRING;
+ #endif
+ 
+ /*


More information about the svn-ports-head mailing list