svn commit: r462524 - head/audio/milkytracker

Emanuel Haupt ehaupt at FreeBSD.org
Wed Feb 21 14:10:57 UTC 2018


Author: ehaupt
Date: Wed Feb 21 14:10:56 2018
New Revision: 462524
URL: https://svnweb.freebsd.org/changeset/ports/462524

Log:
  Fix build on 12.0-CURRENT after upgrading clang, llvm, lld, lldb, compiler-rt
  and libc++ to 6.0.0 by falling back to gcc.
  
  Notified by:	pkg-fallout

Modified:
  head/audio/milkytracker/Makefile

Modified: head/audio/milkytracker/Makefile
==============================================================================
--- head/audio/milkytracker/Makefile	Wed Feb 21 13:44:19 2018	(r462523)
+++ head/audio/milkytracker/Makefile	Wed Feb 21 14:10:56 2018	(r462524)
@@ -28,6 +28,13 @@ OPTIONS_DEFINE=	DOCS
 BROKEN_powerpc=		Does not build on powerpc
 BROKEN_powerpc64=	Does not build on powerpc64
 
+.include <bsd.port.pre.mk>
+
+# does not compile with clang 6.0.0
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056
+USE_GCC=	yes
+.endif
+
 post-install:
 .for f in ${ICONS}
 	${INSTALL_DATA} ${WRKSRC}/resources/pictures/${f} \
@@ -39,4 +46,4 @@ post-install:
 	${INSTALL_DATA} ${WRKSRC}/docs/${f} ${STAGEDIR}${DOCSDIR}
 .endfor
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-head mailing list