mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-21 02:42:18 +00:00
Signed-off-by: Alfred Wingate <parona@protonmail.com> Signed-off-by: Sam James <sam@gentoo.org>
13 lines
401 B
Diff
13 lines
401 B
Diff
Uses std::auto_ptr which has been officially removed in C++17.
|
|
While GCC still has it present LLVM has explicitly removed it.
|
|
|
|
--- a/inc/Module/Build/Scintilla/GTK.pm
|
|
+++ b/inc/Module/Build/Scintilla/GTK.pm
|
|
@@ -50,6 +50,7 @@
|
|
'-o ' . $object_name,
|
|
'-O2',
|
|
'-Wall',
|
|
+ '-std=c++11',
|
|
$object_name !~ /((Plat|Scintilla)WX|scintilla)\.o/
|
|
? '-Wno-missing-braces -Wno-char-subscripts'
|
|
: '',
|