svn commit: r461272 - head/emulators/wine-devel

Gerald Pfeifer gerald at FreeBSD.org
Thu Feb 8 21:54:25 UTC 2018


Author: gerald
Date: Thu Feb  8 21:54:24 2018
New Revision: 461272
URL: https://svnweb.freebsd.org/changeset/ports/461272

Log:
  The issue of clang 6.0.0 crashing when building Wine was just resolved
  with __FreeBSD_version 1200057, so reduce the window of versions we
  need a workaround for to 1200056.
  
  PR:		224863
  Thanks to:	dim

Modified:
  head/emulators/wine-devel/Makefile

Modified: head/emulators/wine-devel/Makefile
==============================================================================
--- head/emulators/wine-devel/Makefile	Thu Feb  8 21:37:54 2018	(r461271)
+++ head/emulators/wine-devel/Makefile	Thu Feb  8 21:54:24 2018	(r461272)
@@ -111,7 +111,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-head mailing list