Summary: | x11/leechcraft: fix build with clang 3.8.0 | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Dimitry Andric <dim> | ||||
Component: | Individual Port(s) | Assignee: | Dimitry Andric <dim> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Some People | Flags: | bugzilla:
maintainer-feedback?
(vg) |
||||
Priority: | --- | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Bug Depends on: | |||||||
Bug Blocks: | 206074 | ||||||
Attachments: |
|
Description
Dimitry Andric
2016-01-26 18:56:14 UTC
Please build it, if it's ok - commit. (In reply to Veniamin Gvozdikov from comment #1) > Please build it, if it's ok - commit. Yes, it built OK for me, though it took a long time, it has a LOT of dependencies! :) A commit references this bug: Author: dim Date: Wed Jan 27 19:52:04 UTC 2016 New revision: 407380 URL: https://svnweb.freebsd.org/changeset/ports/407380 Log: In x11/leechcraft, change the syntax of C++11 braced initializers with multiple elements to correspond to C++ WG paper N3922. E.g, instead of: auto foo { 1, 2, 3, 4 }; one should write: auto foo = { 1, 2, 3, 4 }; This makes the port compile with clang 3.8.0 and higher, or gcc 5.0 and higher. Approved by: vg (maintainer) PR: 206650 MFH: 2016Q1 Changes: head/x11/leechcraft/files/patch-plugins_azoth_plugins_otroid_otrhandler.cpp head/x11/leechcraft/files/patch-util_network_addresses.cpp head/x11/leechcraft/files/patch-util_xdg_xdg.cpp A commit references this bug: Author: dim Date: Wed Jan 27 21:02:31 UTC 2016 New revision: 407389 URL: https://svnweb.freebsd.org/changeset/ports/407389 Log: MFH: r407380 In x11/leechcraft, change the syntax of C++11 braced initializers with multiple elements to correspond to C++ WG paper N3922. E.g, instead of: auto foo { 1, 2, 3, 4 }; one should write: auto foo = { 1, 2, 3, 4 }; This makes the port compile with clang 3.8.0 and higher, or gcc 5.0 and higher. Approved by: ports-secteam (feld) PR: 206650 Changes: _U branches/2016Q1/ branches/2016Q1/x11/leechcraft/files/patch-plugins_azoth_plugins_otroid_otrhandler.cpp branches/2016Q1/x11/leechcraft/files/patch-util_network_addresses.cpp branches/2016Q1/x11/leechcraft/files/patch-util_xdg_xdg.cpp |