Changes between Version 76 and Version 77 of PortfileRecipes


Ignore:
Timestamp:
Sep 7, 2013, 9:54:16 AM (11 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

default gcc variant is now gcc48

Legend:

Unmodified
Added
Removed
Modified
  • PortfileRecipes

    v76 v77  
    411411So on the one hand, all such ports should default to using a particular
    412412common version of GCC; the version we are currently using as the default
    413 version in MacPorts is `gcc47`. On the other hand, a user may want to
     413version in MacPorts is `gcc48`. On the other hand, a user may want to
    414414choose their GCC version. Therefore, ports that need to use a GCC port,
    415415but aren't picky about exactly which one, are encouraged to offer
     
    439439if {![variant_isset gcc45] && ![variant_isset gcc46] &&
    440440   ![variant_isset gcc47] && ![variant_isset gcc48] && ![variant_isset gcc49]} {
    441     default_variants +gcc47
     441    default_variants +gcc48
    442442}
    443443}}}