svn commit: r450020 - head/graphics/blender

Gerald Pfeifer gerald at FreeBSD.org
Sun Sep 17 19:30:15 UTC 2017


Author: gerald
Date: Sun Sep 17 19:30:14 2017
New Revision: 450020
URL: https://svnweb.freebsd.org/changeset/ports/450020

Log:
  Remove code that "thinks" it is using GCC 4.8 instead of the default
  version of GCC (which is GCC 6 these days).
  
  For most practical purposes USE_GCC=4.8+ is equivalent to USE_GCC=yes,
  so GCC 5 for several months (and now GCC 6) have been used already since
  2017-03-07 and revision 435594 -- if GCC is used at all, which is not the
  default anyway.

Modified:
  head/graphics/blender/Makefile

Modified: head/graphics/blender/Makefile
==============================================================================
--- head/graphics/blender/Makefile	Sun Sep 17 18:38:38 2017	(r450019)
+++ head/graphics/blender/Makefile	Sun Sep 17 19:30:14 2017	(r450020)
@@ -213,12 +213,7 @@ BROKEN=	REDCODE requires OPENJPEG and FFMPEG
 
 .if ${COMPILER_TYPE} == gcc
 # gcc 4.2 does not support -msse4.1, which is needed for blender 2.70+
-.if ${ARCH} == amd64
-# gcc 4.9 fails to link on amd64
-USE_GCC=	4.8+
-.else
 USE_GCC=	yes
-.endif
 .endif
 
 post-patch-OPENCOLORIO-on:


More information about the svn-ports-all mailing list