Ticket #55857: Portfile.diff

File Portfile.diff, 1.1 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 7 years ago)
  • Portfile

    old new  
    77name            boost
    88
    99version         1.66.0
     10revision        1
    1011checksums       rmd160  ee5dafdfa49adf50a5333cef1f55dac4f70b4c14 \
    1112                sha256  5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9 \
    1213                size    85995778
     
    120121        set cxx_stdlibflags -stdlib=${configure.cxx_stdlib}
    121122    }
    122123
    123     write_jam "using darwin : : ${configure.cxx} : <cxxflags>\"${configure.cxxflags} ${cxx_stdlibflags}\" ${compileflags} <linkflags>\"${configure.ldflags} ${cxx_stdlibflags}\" : ;"
     124    # see https://trac.macports.org/ticket/55857
     125    # see https://svn.boost.org/trac10/ticket/13454
     126    set universal_cxxflags ""
     127    if {[variant_isset universal]} {
     128        set universal_cxxflags ${configure.universal_cxxflags}
     129    }
     130
     131    write_jam "using darwin : : ${configure.cxx} : <cxxflags>\"${configure.cxxflags} ${universal_cxxflags} ${cxx_stdlibflags}\" ${compileflags} <linkflags>\"${configure.ldflags} ${cxx_stdlibflags}\" : ;"
    124132
    125133}
    126134