blob: 1b941cfa94310fd39cfcf1aa47613c3893d01cd6 (
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
|
Description: fix FTBFS with gcc-4.7
Author: Mathieu Malaterre <malat@debian.org>
Origin: http://anonscm.debian.org/gitweb/?p=collab-maint/vtk.git;a=commitdiff;h=428e763c995bb303805e07da70c1a34fc103d208
Reviewed-by: Anton Gladky <gladky.anton@gmail.com>
Last-Update: 2012-05-08
--- a/VTK/Rendering/FreeType/vtkFreeTypeTools.cxx
+++ b/VTK/Rendering/FreeType/vtkFreeTypeTools.cxx
@@ -35,6 +35,8 @@
using namespace ftgl;
#endif
+#include <stdint.h>
+
// Print debug info
#define VTK_FTFC_DEBUG 0
#define VTK_FTFC_DEBUG_CD 0
--- a/VTK/Rendering/FreeType/vtkFreeTypeUtilities.cxx
+++ b/VTK/Rendering/FreeType/vtkFreeTypeUtilities.cxx
@@ -36,6 +36,8 @@
using namespace ftgl;
#endif
+#include <stdint.h>
+
// Print debug info
#define VTK_FTFC_DEBUG 0
|