Ticket #35400: Portfile.diff

File Portfile.diff, 1.4 KB (added by howarth@…, 12 years ago)

Portfile diff to update to 8.5.12 and move corefoundation usage into threads variant

  • Portfile

    old new  
    33PortSystem 1.0
    44
    55name          tcl
    6 version       8.5.11
     6version       8.5.12
    77# Tk (x11/tk) port depends on this version
    88categories    lang
    99license       Tcl/Tk
     
    2020homepage      http://www.tcl.tk/
    2121master_sites  sourceforge:project/tcl/Tcl/${version}
    2222
    23 checksums           md5     b01a9691c83990b3db0ce62d1012ca67 \
    24                     sha1    cb70dcfb7625389afd774e0438a7ade3e7aa13c8 \
    25                     rmd160  36140b5e8365c190202132dd6f0dfeb831ea9bc8
     23checksums           md5     174b2b4c619ba8f96875d8a051917703 \
     24                    sha1    0ea293d27b1368cb5865e552ece348d02ff55adc \
     25                    rmd160  ada42e22f7b12413c88d9ec7dbd3789926f362d2
    2626
    2727dist_subdir     tcltk
    2828distname        ${name}${version}-src
    2929worksrcdir      ${name}${version}/unix
    30 configure.args  --mandir=${prefix}/share/man
     30configure.args  --mandir=${prefix}/share/man --disable-corefoundation
    3131configure.cppflags-delete  -I${prefix}/include
    3232configure.ldflags-delete   -L${prefix}/lib
    3333
     
    4040# dont enable threads by default as Tcl uses thread-local storage which makes
    4141# passing Tcl_Obj* around between threads fatal
    4242variant threads description {add multithreading support} {
     43    configure.args-delete --disable-corefoundation
    4344    configure.args-append --enable-threads
    4445}
    4546