Ticket #37349: erlang-hipe.diff
File erlang-hipe.diff, 1.3 KB (added by ryandesign (Ryan Carsten Schmidt), 12 years ago) |
---|
-
Portfile
5 5 6 6 name erlang 7 7 version R15B03 8 revision 1 8 9 categories lang erlang 9 10 maintainers bfulgham 10 11 platforms darwin … … 63 64 --enable-threads \ 64 65 --enable-dynamic-ssl-lib \ 65 66 --enable-smp-support \ 66 -- enable-hipe\67 --disable-hipe \ 67 68 --without-ssl \ 68 69 --without-odbc 69 70 … … 145 146 depends_lib-append port:openssl 146 147 } 147 148 148 variant nohipe description {Disable HiPE (native-code bytecode compiler)} { 149 configure.args-delete --enable-hipe 149 variant hipe conflicts nohipe description {Enable HiPE (native-code bytecode compiler)} { 150 configure.args-delete --disable-hipe 151 configure.args-append --enable-hipe 150 152 } 153 variant nohipe conflicts hipe description {Legacy compatibility variant} {} 154 if {[variant_isset nohipe]} { 155 default_variants -hipe 156 } else { 157 default_variants +hipe 158 } 151 159 152 160 variant odbc description {Build ODBC support} { 153 161 depends_lib-append port:unixODBC