Changes between Version 65 and Version 66 of PortfileRecipes


Ignore:
Timestamp:
Jul 16, 2013, 10:03:16 PM (11 years ago)
Author:
mf2k (Frank Schima)
Comment:

Remove reference to old gcc version 4.3 and 4.4 and add gcc 4.9 to compiler variants section

Legend:

Unmodified
Added
Removed
Modified
  • PortfileRecipes

    v65 v66  
    327327
    328328{{{
    329 variant gcc43 conflicts gcc44 gcc45 gcc46 gcc47 gcc48 description {Compile with gcc 4.3} {
    330     configure.compiler macports-gcc-4.3
    331     depends_lib-append port:gcc43
    332 }
    333 
    334 variant gcc44 conflicts gcc43 gcc45 gcc46 gcc47 gcc48 description {Compile with gcc 4.4} {
    335     configure.compiler macports-gcc-4.4
    336     depends_lib-append port:gcc44
    337 }
    338 
    339 variant gcc45 conflicts gcc43 gcc44 gcc46 gcc47 gcc48 description {Compile with gcc 4.5} {
     329variant gcc45 conflicts gcc46 gcc47 gcc48 gcc49 description {Compile with gcc 4.5} {
    340330    configure.compiler macports-gcc-4.5
    341331    depends_lib-append port:gcc45
    342332}
    343333
    344 variant gcc46 conflicts gcc43 gcc44 gcc45 gcc47 gcc48 description {Compile with gcc 4.6} {
     334variant gcc46 conflicts gcc45 gcc47 gcc48 gcc49 description {Compile with gcc 4.6} {
    345335    configure.compiler macports-gcc-4.6
    346336    depends_lib-append port:gcc46
    347337}
    348338
    349 variant gcc47 conflicts gcc43 gcc44 gcc45 gcc46 gcc48 description {Compile with gcc 4.7} {
     339variant gcc47 conflicts gcc45 gcc46 gcc48 gcc49 description {Compile with gcc 4.7} {
    350340    configure.compiler macports-gcc-4.7
    351341    depends_lib-append port:gcc47
    352342}
    353343
    354 variant gcc48 conflicts gcc43 gcc44 gcc45 gcc46 gcc47 description {Compile with gcc 4.8} {
     344variant gcc48 conflicts gcc45 gcc46 gcc47 gcc49 description {Compile with gcc 4.8} {
    355345    configure.compiler macports-gcc-4.8
    356346    depends_lib-append port:gcc48
    357347}
    358348
    359 if {![variant_isset gcc43] && ![variant_isset gcc44] && ![variant_isset gcc45] &&
    360     ![variant_isset gcc46] && ![variant_isset gcc47] && ![variant_isset gcc48]} {
     349variant gcc49 conflicts gcc45 gcc46 gcc47 gcc48 description {Compile with gcc 4.9} {
     350    configure.compiler macports-gcc-4.9
     351    depends_lib-append port:gcc49
     352}
     353
     354if {![variant_isset gcc45] && ![variant_isset gcc46] &&
     355   ![variant_isset gcc47] && ![variant_isset gcc48] && ![variant_isset gcc49]} {
    361356    default_variants +gcc47
    362357}