svn commit: r505633 - in head/x11-wm/gcompmgr: . files

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jul 1 19:50:07 UTC 2019


Author: pkubaj
Date: Mon Jul  1 19:50:05 2019
New Revision: 505633
URL: https://svnweb.freebsd.org/changeset/ports/505633

Log:
  x11-wm/gcompmgr: fix build with GCC-based architectures
  
  Approved by:	mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20822

Added:
  head/x11-wm/gcompmgr/files/patch-src_params.cc   (contents, props changed)
  head/x11-wm/gcompmgr/files/patch-src_stdxinc.cc   (contents, props changed)
Modified:
  head/x11-wm/gcompmgr/Makefile

Modified: head/x11-wm/gcompmgr/Makefile
==============================================================================
--- head/x11-wm/gcompmgr/Makefile	Mon Jul  1 19:47:39 2019	(r505632)
+++ head/x11-wm/gcompmgr/Makefile	Mon Jul  1 19:50:05 2019	(r505633)
@@ -10,8 +10,6 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-$
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	GNOME interface to xcompmgr
 
-BROKEN_powerpc64=	fails to compile: params.cc:135:37: 'memset' was not declared in this scope
-
 RUN_DEPENDS=	xcompmgr:x11-wm/xcompmgr
 
 GNU_CONFIGURE=	yes

Added: head/x11-wm/gcompmgr/files/patch-src_params.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/gcompmgr/files/patch-src_params.cc	Mon Jul  1 19:50:05 2019	(r505633)
@@ -0,0 +1,10 @@
+--- src/params.cc.orig	2019-07-01 08:27:28 UTC
++++ src/params.cc
+@@ -22,6 +22,7 @@
+  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+  */
+ #include "params.h"
++#include <cstring>
+ #define BUFSIZE 1000
+ 
+ params::params()

Added: head/x11-wm/gcompmgr/files/patch-src_stdxinc.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/gcompmgr/files/patch-src_stdxinc.cc	Mon Jul  1 19:50:05 2019	(r505633)
@@ -0,0 +1,10 @@
+--- src/stdxinc.cc.orig	2019-07-01 08:18:45 UTC
++++ src/stdxinc.cc
+@@ -7,6 +7,7 @@
+  ****************************************************************************/
+ 
+ #include "stdxinc.h"
++#include <cstring>
+ #define XC_pirate 88
+ 
+ char *Get_Display_Name(int *pargc, char **argv) 


More information about the svn-ports-all mailing list