[Bug 1832884] [NEW] libsparsehash-dev homepage link broken

2019-06-14 Thread nils mccarthy
Public bug reported: "apt show libsparsehash-dev" shows "Homepage: http://code.google.com/p /google-sparsehash". Going to this URL gives a redirect page to https://code.google.com/archive/sparsehash, which doesn't exist. Going to http://code.google.com/p/sparsehash instead redirects to

[Bug 1664321] [NEW] clang + boost regex + xenial = linker error

2017-02-13 Thread nils mccarthy
Public bug reported: I get a linker error compiling the following with clang++-3.8 optimization level -O1: #include int main() { boost::regex re; std::string str; boost::smatch match; boost::regex_match(str, match, re); return 0; } It works fine with gcc: $ g++ -O1 -o