Changes between Version 26 and Version 27 of PortfileRecipes


Ignore:
Timestamp:
May 3, 2011, 2:11:51 AM (13 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

use more modern gcc versions in example

Legend:

Unmodified
Added
Removed
Modified
  • PortfileRecipes

    v26 v27  
    246246
    247247{{{
    248 variant gcc42 conflicts gcc43 gcc44 description {Compile with gcc42} {
    249     configure.compiler macports-gcc-4.2
    250     depends_lib-append port:gcc42
    251 }
    252 
    253 variant gcc43 conflicts gcc42 gcc44 description {Compile with gcc43} {
     248variant gcc43 conflicts gcc44 gcc45 description {Compile with gcc 4.3} {
    254249    configure.compiler macports-gcc-4.3
    255250    depends_lib-append port:gcc43
    256251}
    257252
    258 variant gcc44 conflicts gcc42 gcc43 description {Compile with gcc44} {
     253variant gcc44 conflicts gcc43 gcc45 description {Compile with gcc 4.4} {
    259254    configure.compiler macports-gcc-4.4
    260255    depends_lib-append port:gcc44
    261256}
    262257
    263 if {![variant_isset gcc42] && ![variant_isset gcc43] && ![variant_isset gcc44]} {
    264     default_variants +gcc44
     258variant gcc45 conflicts gcc43 gcc44 description {Compile with gcc 4.5} {
     259    configure.compiler macports-gcc-4.5
     260    depends_lib-append port:gcc45
     261}
     262
     263if {![variant_isset gcc43] && ![variant_isset gcc44] && ![variant_isset gcc45]} {
     264    default_variants +gcc45
    265265}
    266266}}}