View | Details | Raw Unified | Return to bug 241418 | Differences between
and this patch

Collapse All | Expand All

(-)files/patch-libcurv_geom_viewer_fbo.cc (+10 lines)
Line 0 Link Here
1
--- libcurv/geom/viewer/fbo.cc.orig	2019-10-22 18:20:49 UTC
2
+++ libcurv/geom/viewer/fbo.cc
3
@@ -25,6 +25,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH D
4
 
5
 #include "fbo.h"
6
 #include <iostream>
7
+#include <sys/types.h>
8
 
9
 Fbo::Fbo():m_id(0), m_old_fbo_id(0), m_texture(0), m_depth_buffer(0), m_width(0), m_height(0), m_allocated(false), m_binded(false) {
10
 }
(-)files/patch-libcurv_geom_viewer_mesh.cc (+10 lines)
Line 0 Link Here
1
--- libcurv/geom/viewer/mesh.cc.orig	2019-10-22 18:21:49 UTC
2
+++ libcurv/geom/viewer/mesh.cc
3
@@ -2,6 +2,7 @@
4
 
5
 #include <iostream>
6
 #include <fstream> 
7
+#include <sys/types.h>
8
 
9
 //#include "fs.h"
10
 #include "geom.h"
(-)files/patch-libcurv_geom_viewer_text.cc (+10 lines)
Line 0 Link Here
1
--- libcurv/geom/viewer/text.cc.orig	2019-10-22 18:22:58 UTC
2
+++ libcurv/geom/viewer/text.cc
3
@@ -1,6 +1,7 @@
4
 #include "text.h"
5
 
6
 #include <algorithm>
7
+#include <sys/types.h>
8
 
9
 std::string getLower(const std::string& _string) {
10
     std::string std = _string;
(-)files/patch-libcurv_geom_viewer_vertexLayout.cc (+9 lines)
Line 0 Link Here
1
--- libcurv/geom/viewer/vertexLayout.cc.orig	2019-10-22 18:23:57 UTC
2
+++ libcurv/geom/viewer/vertexLayout.cc
3
@@ -1,5 +1,6 @@
4
 #include "vertexLayout.h"
5
 #include "text.h"
6
+#include <sys/types.h>
7
 
8
 std::map<GLint, GLuint> VertexLayout::s_enabledAttribs = std::map<GLint, GLuint>();
9
 

Return to bug 241418