svn commit: r544792 - in head/misc: biblesync xiphos

Piotr Kubaj pkubaj at FreeBSD.org
Thu Aug 13 09:07:25 UTC 2020


Author: pkubaj
Date: Thu Aug 13 09:07:24 2020
New Revision: 544792
URL: https://svnweb.freebsd.org/changeset/ports/544792

Log:
  misc/xiphos: fix build on GCC architectures
  
  Use C11 compiler:
  /usr/local/include/unicode/localpointer.h:224: error: expected ';' before 'noexcept'
  
  Also required is bumping GCC for misc/biblesync because of libstdc++ ABI error.
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/misc/biblesync/Makefile
  head/misc/xiphos/Makefile

Modified: head/misc/biblesync/Makefile
==============================================================================
--- head/misc/biblesync/Makefile	Thu Aug 13 09:03:52 2020	(r544791)
+++ head/misc/biblesync/Makefile	Thu Aug 13 09:07:24 2020	(r544792)
@@ -12,7 +12,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libuuid.so:misc/e2fsprogs-libuuid
 
-USES=		cmake gettext-runtime
+USES=		cmake compiler:c++11-lang gettext-runtime
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	karlkleinpaste

Modified: head/misc/xiphos/Makefile
==============================================================================
--- head/misc/xiphos/Makefile	Thu Aug 13 09:03:52 2020	(r544791)
+++ head/misc/xiphos/Makefile	Thu Aug 13 09:07:24 2020	(r544792)
@@ -30,7 +30,7 @@ LIB_DEPENDS=	libbiblesync.so:misc/biblesync \
 		libwebkit2gtk-4.0.so:www/webkit2-gtk3
 
 # gettext is always needed, even if NLS is off
-USES=		cmake gettext gnome pkgconfig
+USES=		cmake compiler:c11 gettext gnome pkgconfig
 USE_GNOME=	cairo gconf2 gtk30 gtkhtml4 intltool libgsf
 INSTALLS_ICONS=	yes
 


More information about the svn-ports-head mailing list