summarylogtreecommitdiffstats
path: root/infekt_fix_includes.patch
blob: 01fa80f717fe7d5f779b83a6f639b463baf001fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
--- a/src/lib/nfo_colormap.h
+++ b/src/lib/nfo_colormap.h
@@ -15,6 +15,8 @@
 #ifndef _NFO_COLORMAP_H
 #define _NFO_COLORMAP_H
 
+#include <memory>
+
 class CNFOColorMap
 {
 public:

--- a/src/lib/nfo_renderer.cpp
+++ b/src/lib/nfo_renderer.cpp
@@ -15,7 +15,7 @@
 #include "stdafx.h"
 #include "nfo_renderer.h"
 #include "cairo_box_blur.h"
-
+#include <cmath>
 
 CNFORenderer::CNFORenderer(bool a_classicMode) :
 	m_classic(a_classicMode),

--- a/src/lib/nfo_renderer.h
+++ b/src/lib/nfo_renderer.h
@@ -17,6 +17,7 @@
 
 #include "nfo_data.h"
 #include "cairo_box_blur.h"
+#include <thread>
 
 // http://www.alanwood.net/unicode/block_elements.html
 // http://www.alanwood.net/demos/wgl4.html

--- a/src/gtk/nfo_view_ctrl.h
+++ b/src/gtk/nfo_view_ctrl.h
@@ -17,6 +17,7 @@
 
 #include <gtkmm/builder.h>
 #include <gtkmm/layout.h>
+#include <memory>
 
 #include "nfo_data.h"
 #include "nfo_renderer.h"

--- a/src/lib/util.h
+++ b/src/lib/util.h
@@ -24,6 +24,7 @@
 
 #include <string>
 #include <vector>
+#include <memory>
 
 class CUtil
 {