Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jul 2013 20:39:43 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323854 - head/lang/pypy
Message-ID:  <201307282039.r6SKdhK4092067@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbn
Date: Sun Jul 28 20:39:43 2013
New Revision: 323854
URL: http://svnweb.freebsd.org/changeset/ports/323854

Log:
  Fix lang/pypy (and INDEX build).
  
  Portlint recommends "USE_GCC=yes+" however such an option breaks everything.
  
  Ignore portlint and use "USE+GCC=4.2+" as the port will compile with just about
  any valid C compiler.

Modified:
  head/lang/pypy/Makefile

Modified: head/lang/pypy/Makefile
==============================================================================
--- head/lang/pypy/Makefile	Sun Jul 28 20:37:23 2013	(r323853)
+++ head/lang/pypy/Makefile	Sun Jul 28 20:39:43 2013	(r323854)
@@ -67,7 +67,7 @@ LOCALBASE_REFIX=	\
 .if ${CC:T} == cc && ( exists(/usr/bin/clang) || exists(${LOCALBASE}/clang) )
 CC=		clang
 .else
-USE_GCC=	yes+
+USE_GCC=	4.2+
 .endif
 .endif
 



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