
- depends on GTK+ with X enabled (btw, non-X backends are deprecated/removed in GTK+) - patch for 3.0.1-3.0.2: missing include caused multiple `error: call of overloaded ‘abs(XYPOSITION)’ is ambiguous` (seen in GCC 6.3.0); fixed in 3.0.3+
13 lines
332 B
Diff
13 lines
332 B
Diff
diff --git a/src/stc/scintilla/src/Editor.cxx b/src/stc/scintilla/src/Editor.cxx
|
|
index cd72953ae7..8c19154313 100644
|
|
--- a/src/stc/scintilla/src/Editor.cxx
|
|
+++ b/src/stc/scintilla/src/Editor.cxx
|
|
@@ -10,6 +10,7 @@
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#include <assert.h>
|
|
+#include <math.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|