Ticket #26466: boost_without_static_single.patch

File boost_without_static_single.patch, 814 bytes (added by manphiz@…, 14 years ago)

patch against current Portfile with variants no_single and no_static

  • ports/devel/boost/Portfile

    old new  
    159159    build.args-append   -sICU_PATH=${prefix}
    160160}
    161161
     162variant no_static description {Disable building static libraries} {
     163    build.args-append   link=shared
     164}
     165
     166variant no_single description {Disable building single threaading libraries} {
     167    build.args-delete   threading=single,multi
     168    build.args-append   threading=multi
     169}
     170
    162171variant openmpi description {Build Boost.MPI} conflicts debug {
    163172    # Cannot build debug variants with openmpi and python variants as per the following:
    164173    # <http://trac.macports.org/ticket/23667> and <https://svn.boost.org/trac/boost/ticket/4461>