diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-10-03 16:19:39 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-10-03 16:19:39 +0000 |
commit | 111cf11945261f7694631f33c98c67ec7c40bc72 (patch) | |
tree | f6fe544becb76499056f3c310e39b0eab343d498 | |
parent | sysutils/xfce4-bsdcpufreq-plugin: fix build on GCC architectures (diff) |
x11/xfce4-verve-plugin: fix build on GCC architectures
Use C11 compiler:
In file included from /usr/local/include/xfce4/libxfce4util/libxfce4util.h:33,
from /usr/local/include/xfce4/libxfce4ui-2/libxfce4ui/libxfce4ui.h:23,
from verve.c:34:
/usr/local/include/xfce4/libxfce4util/xfce-kiosk.h:37: error: redefinition of typedef 'XfceKiosk'
/usr/local/include/xfce4/libxfce4util/xfce-kiosk.h:35: error: previous declaration of 'XfceKiosk' was here
Approved by: mentors (implicit approval)
Notes
Notes:
svn path=/head/; revision=513673
-rw-r--r-- | x11/xfce4-verve-plugin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/xfce4-verve-plugin/Makefile b/x11/xfce4-verve-plugin/Makefile index 739e09f4e537..682f79a47835 100644 --- a/x11/xfce4-verve-plugin/Makefile +++ b/x11/xfce4-verve-plugin/Makefile @@ -16,7 +16,8 @@ LICENSE= GPLv2 LIB_DEPENDS= libpcre.so:devel/pcre -USES= gettext-tools gmake gnome libtool pkgconfig tar:bzip2 xfce +USES= compiler:c11 gettext-tools gmake gnome libtool pkgconfig \ + tar:bzip2 xfce USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool pango USE_XFCE= panel |