svn commit: r513407 - head/x11/libexo

Piotr Kubaj pkubaj at FreeBSD.org
Mon Sep 30 19:08:39 UTC 2019


Author: pkubaj
Date: Mon Sep 30 19:08:38 2019
New Revision: 513407
URL: https://svnweb.freebsd.org/changeset/ports/513407

Log:
  x11/libexo: fix build on GCC architectures
  
  C11 compiler is required:
  In file included from /usr/local/include/xfce4/libxfce4util/libxfce4util.h:33,
                   from ../exo/exo-enum-types.h:6,
                   from ../exo/exo.h:39,
                   from exo-enum-types.c:6:
  /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)

Modified:
  head/x11/libexo/Makefile

Modified: head/x11/libexo/Makefile
==============================================================================
--- head/x11/libexo/Makefile	Mon Sep 30 18:21:18 2019	(r513406)
+++ head/x11/libexo/Makefile	Mon Sep 30 19:08:38 2019	(r513407)
@@ -21,8 +21,8 @@ LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
 BUILD_DEPENDS=	p5-URI>=1.70:net/p5-URI
 RUN_DEPENDS=	p5-URI>=1.70:net/p5-URI
 
-USES=		desktop-file-utils gettext-tools gmake gnome libtool pathfix \
-		perl5 pkgconfig tar:bzip2 xfce xorg
+USES=		compiler:c11 desktop-file-utils gettext-tools gmake gnome \
+		libtool pathfix perl5 pkgconfig tar:bzip2 xfce xorg
 USE_GNOME=	cairo glib20 gtk30 intltool
 USE_LDCONFIG=	yes
 USE_XFCE=	libmenu


More information about the svn-ports-all mailing list