svn commit: r459270 - head/misc/sword

Thomas Abthorpe tabthorpe at FreeBSD.org
Wed Jan 17 16:44:07 UTC 2018


Author: tabthorpe
Date: Wed Jan 17 16:44:05 2018
New Revision: 459270
URL: https://svnweb.freebsd.org/changeset/ports/459270

Log:
  - Fix build for FreeBSD 11+
  
  MFH:		2018Q1

Modified:
  head/misc/sword/Makefile

Modified: head/misc/sword/Makefile
==============================================================================
--- head/misc/sword/Makefile	Wed Jan 17 16:35:57 2018	(r459269)
+++ head/misc/sword/Makefile	Wed Jan 17 16:44:05 2018	(r459270)
@@ -15,7 +15,11 @@ LICENSE=	GPLv2
 
 BUILD_DEPENDS=	cppunit-config:devel/cppunit
 
-BROKEN_FreeBSD_12=	does not build on 12.X
+# Workaround for for FreeBSD_11+.
+BUILD_DEPENDS+= clang38:lang/clang38
+CC=		clang38
+CXX=		clang++38
+
 BROKEN_powerpc64=	does not compile: libicui18n.so: undefined reference to __cxa_throw_bad_array_new_length
 
 GNU_CONFIGURE=	yes


More information about the svn-ports-all mailing list