Ticket #25242: molden-gcc45.diff
File molden-gcc45.diff, 1.0 KB (added by ryandesign (Ryan Carsten Schmidt), 14 years ago) |
---|
-
Portfile
73 73 ui_msg "**************************************************" 74 74 } 75 75 76 variant gcc43 conflicts gcc44 description {Build using gcc43} {76 variant gcc43 conflicts gcc44 gcc45 description {Build using gcc43} { 77 77 depends_lib-append port:gcc43 78 78 configure.compiler macports-gcc-4.3 79 79 } 80 80 81 variant gcc44 conflicts gcc43 description {Build using gcc44} {81 variant gcc44 conflicts gcc43 gcc45 description {Build using gcc44} { 82 82 depends_lib-append port:gcc44 83 83 configure.compiler macports-gcc-4.4 84 84 } 85 85 86 if {![variant_isset gcc43] && ![variant_isset gcc44]} { 86 variant gcc45 conflicts gcc43 gcc44 description {Build using gcc45} { 87 depends_lib-append port:gcc45 88 configure.compiler macports-gcc-4.5 89 } 90 91 if {![variant_isset gcc43] && ![variant_isset gcc44] && ![variant_isset gcc45]} { 87 92 default_variants +gcc43 88 93 } 89 94