Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Feb 2018 20:45:08 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r462264 - head/emulators/wine
Message-ID:  <201802182045.w1IKj8TK076190@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802182045.w1IKj8TK076190>