svn commit: r459985 - head/emulators/wine

Gerald Pfeifer gerald at FreeBSD.org
Fri Jan 26 10:43:51 UTC 2018


Author: gerald
Date: Fri Jan 26 10:43:50 2018
New Revision: 459985
URL: https://svnweb.freebsd.org/changeset/ports/459985

Log:
  Limit the workaround for clang crashing to amd64.
  
  PR:		224863
  Reported by:	jbeich

Modified:
  head/emulators/wine/Makefile

Modified: head/emulators/wine/Makefile
==============================================================================
--- head/emulators/wine/Makefile	Fri Jan 26 10:34:54 2018	(r459984)
+++ head/emulators/wine/Makefile	Fri Jan 26 10:43:50 2018	(r459985)
@@ -108,7 +108,7 @@ X11_LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig
 .include <bsd.port.pre.mk>
 
 # PR224863: clang 6.0.0 crashes
-.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 && ${ARCH} == amd64
 USE_GCC=	yes
 .endif
 


More information about the svn-ports-all mailing list