svn commit: r462264 - head/emulators/wine
Gerald Pfeifer
gerald at FreeBSD.org
Sun Feb 18 20:45:08 UTC 2018
Author: gerald
Date: Sun Feb 18 20:45:07 2018
New Revision: 462264
URL: https://svnweb.freebsd.org/changeset/ports/462264
Log:
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
Modified:
head/emulators/wine/Makefile
Modified: head/emulators/wine/Makefile
==============================================================================
--- head/emulators/wine/Makefile Sun Feb 18 20:33:49 2018 (r462263)
+++ head/emulators/wine/Makefile Sun Feb 18 20:45:07 2018 (r462264)
@@ -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
More information about the svn-ports-all
mailing list