Ticket #10992: lang-chicken-Portfile.diff

File lang-chicken-Portfile.diff, 1.3 KB (added by arto.bendiken@…, 17 years ago)

Portfile diff.

  • Portfile

    old new  
    22
    33PortSystem 1.0
    44name            chicken
    5 version         2.3
     5version         2.5
    66categories      lang scheme
    77maintainers     tristan@opendarwin.org waqar@macports.org
    88description     Compiler for the Scheme programming language
     
    1414homepage        http://www.call-with-current-continuation.org/
    1515platforms       darwin
    1616master_sites    http://www.call-with-current-continuation.org/
    17 checksums       sha1 0ceb0cdea495f753f091cd06ac196b48eadc0b11
    18 configure.args  --infodir=${prefix}/share/info --mandir=${prefix}/share/man
     17checksums       sha1 5f0e160d5b803d4b51c649a3028124008507d4b6
     18configure.args  --infodir=${prefix}/share/info --mandir=${prefix}/share/man \
     19                --enable-gc-hooks --enable-apply-hook \
     20                --enable-extra-symbol-slot \
     21                --enable-symbol-gc
    1922
    2023platform darwin 8 {
    2124        configure.env CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0
    2225}
     26
     27variant no-hooks {
     28        configure.args-delete --enable-gc-hooks --enable-apply-hook
     29        configure.args-append --disable-gc-hooks --disable-apply-hook
     30}
     31
     32variant no-symslot {
     33        configure.args-delete --enable-extra-symbol-slot
     34        configure.args-append --disable-extra-symbol-slot
     35}
     36
     37variant no-symgc {
     38        configure.args-delete --enable-symbol-gc
     39        configure.args-append --disable-symbol-gc
     40}