Bug ID | 964140 |
---|---|
Summary | nghttp2 fails to build with GCC 6 |
Classification | openSUSE |
Product | openSUSE Tumbleweed |
Version | 2015* |
Hardware | Other |
OS | Other |
Status | NEW |
Severity | Normal |
Priority | P5 - None |
Component | Network |
Assignee | bnc-team-screening@forge.provo.novell.com |
Reporter | rguenther@suse.com |
QA Contact | qa-bugs@suse.de |
Found By | --- |
Blocker | --- |
This is because GCC 6 now defaults to -std=gnu++14 where various new overloads of std::make_unique are available but nghttp2 decides to provide its own which results in ambiguous calls. The fix is to properly guard those own variants properly and otherwise simply pull in those from std. See SR that is forthcoming.