The issue of clang 6.0.0 crashing when building Wine was resolved with

__FreeBSD_version 1200057, so reduce the window of versions we need a
workaround for to just 1200056.

In the mid term I plan on removing this workaround, but let's keep it
in place for a bit longer for the sake of users on an affected snapshot.

PR:		224863
Thanks to:	dim
This commit is contained in:
Gerald Pfeifer 2018-02-18 20:45:07 +00:00
parent c22a1715f3
commit 7320035739
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=462264

View File

@ -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 && ${ARCH} == amd64
.if ${OPSYS} == FreeBSD && ${OSVERSION} == 1200056 && ${ARCH} == amd64
USE_GCC= yes
.endif