diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-01 19:50:05 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-01 19:50:05 +0000 |
commit | 3b530a62f39f75e8e59c033b272ef10e3322dd76 (patch) | |
tree | 7397a4bf21dffc70c720107ebad1d6dcc52dd76d /x11-wm/gcompmgr | |
parent | 991f4493faccdd803e02575f424a73aebeae98da (diff) | |
download | ports-3b530a62f39f75e8e59c033b272ef10e3322dd76.tar.gz ports-3b530a62f39f75e8e59c033b272ef10e3322dd76.zip |
Notes
Diffstat (limited to 'x11-wm/gcompmgr')
-rw-r--r-- | x11-wm/gcompmgr/Makefile | 2 | ||||
-rw-r--r-- | x11-wm/gcompmgr/files/patch-src_params.cc | 10 | ||||
-rw-r--r-- | x11-wm/gcompmgr/files/patch-src_stdxinc.cc | 10 |
3 files changed, 20 insertions, 2 deletions
diff --git a/x11-wm/gcompmgr/Makefile b/x11-wm/gcompmgr/Makefile index 10b10f70a3c0..ab1601f06159 100644 --- a/x11-wm/gcompmgr/Makefile +++ b/x11-wm/gcompmgr/Makefile @@ -10,8 +10,6 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= ports@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 diff --git a/x11-wm/gcompmgr/files/patch-src_params.cc b/x11-wm/gcompmgr/files/patch-src_params.cc new file mode 100644 index 000000000000..fc2d8eac5d25 --- /dev/null +++ b/x11-wm/gcompmgr/files/patch-src_params.cc @@ -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() diff --git a/x11-wm/gcompmgr/files/patch-src_stdxinc.cc b/x11-wm/gcompmgr/files/patch-src_stdxinc.cc new file mode 100644 index 000000000000..3716b449e067 --- /dev/null +++ b/x11-wm/gcompmgr/files/patch-src_stdxinc.cc @@ -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) |