Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-11-25 12:53:07 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 12:53:07 +0300
commit0fbadc8eb7c93e10902cc4357a42dcd73c0a076b (patch)
tree66eca67171025b24578bda6cb5484a141d894a30 /intern/bsp/test/BSP_GhostTest
parentd44f2c6dcc8fbd38790166da79e930e6d79abd08 (diff)
Yes I did it again ;)
added the following 3 lines to everything in the intern dir: #ifdef HAVE_CONFIG_H #include <config.h> #endif Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern/bsp/test/BSP_GhostTest')
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.cpp3
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.h4
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.cpp4
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.h5
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_PlyLoader.cpp6
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h5
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/BSP_TMesh.h5
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/main.cpp4
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/ply.h4
-rwxr-xr-xintern/bsp/test/BSP_GhostTest/plyfile.c4
10 files changed, 43 insertions, 1 deletions
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.cpp b/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.cpp
index 92e5198f139..5d8410462be 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.cpp
+++ b/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.cpp
@@ -34,6 +34,9 @@
* $Id$
* Copyright (C) 2001 NaN Technologies B.V.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#if defined(WIN32) || defined(__APPLE__)
# ifdef WIN32
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.h b/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.h
index 49ab615403d..05da968c69c 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.h
+++ b/intern/bsp/test/BSP_GhostTest/BSP_GhostTest3D.h
@@ -33,6 +33,10 @@
#define BSP_GhostTest_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "GHOST_IEventConsumer.h"
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.cpp b/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.cpp
index 9df6d166263..4f5f5d46535 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.cpp
+++ b/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.cpp
@@ -29,6 +29,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "BSP_MeshDrawer.h"
#include "BSP_TMesh.h"
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.h b/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.h
index fb1c5b1ccf0..f89462395bb 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.h
+++ b/intern/bsp/test/BSP_GhostTest/BSP_MeshDrawer.h
@@ -33,6 +33,11 @@
#define BSP_MeshDrawer_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
class BSP_TMesh;
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.cpp b/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.cpp
index aa7dfbc3818..f148250f1aa 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.cpp
+++ b/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.cpp
@@ -29,6 +29,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "BSP_PlyLoader.h"
#include "MT_Vector3.h"
@@ -193,4 +197,4 @@ NewMeshFromFile(
ply_close (ply);
return mesh;
-} \ No newline at end of file
+}
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h b/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h
index 011b5a8dbcb..4a4b12fb8be 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h
+++ b/intern/bsp/test/BSP_GhostTest/BSP_PlyLoader.h
@@ -33,6 +33,11 @@
#define BSP_PlyLoader_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
#include "MEM_SmartPtr.h"
#include "BSP_TMesh.h"
diff --git a/intern/bsp/test/BSP_GhostTest/BSP_TMesh.h b/intern/bsp/test/BSP_GhostTest/BSP_TMesh.h
index 5bfdb703a52..8b8a365ff78 100755
--- a/intern/bsp/test/BSP_GhostTest/BSP_TMesh.h
+++ b/intern/bsp/test/BSP_GhostTest/BSP_TMesh.h
@@ -33,6 +33,11 @@
#define BSP_TMesh_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
#include "MT_Point3.h"
#include "MT_Vector3.h"
#include "MT_Transform.h"
diff --git a/intern/bsp/test/BSP_GhostTest/main.cpp b/intern/bsp/test/BSP_GhostTest/main.cpp
index e7875047651..6b0e0d66234 100755
--- a/intern/bsp/test/BSP_GhostTest/main.cpp
+++ b/intern/bsp/test/BSP_GhostTest/main.cpp
@@ -29,6 +29,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "BSP_GhostTest3D.h"
#include "BSP_TMesh.h"
diff --git a/intern/bsp/test/BSP_GhostTest/ply.h b/intern/bsp/test/BSP_GhostTest/ply.h
index 7947d224c5f..04844069971 100755
--- a/intern/bsp/test/BSP_GhostTest/ply.h
+++ b/intern/bsp/test/BSP_GhostTest/ply.h
@@ -71,6 +71,10 @@ extern "C" {
#include <stdio.h>
#include <stddef.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define PLY_ASCII 1 /* ascii PLY file */
#define PLY_BINARY_BE 2 /* binary PLY file, big endian */
#define PLY_BINARY_LE 3 /* binary PLY file, little endian */
diff --git a/intern/bsp/test/BSP_GhostTest/plyfile.c b/intern/bsp/test/BSP_GhostTest/plyfile.c
index 1fda4c77454..fd808aa0889 100755
--- a/intern/bsp/test/BSP_GhostTest/plyfile.c
+++ b/intern/bsp/test/BSP_GhostTest/plyfile.c
@@ -70,6 +70,10 @@ WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
#include <string.h>
#include "ply.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
char *type_names[] = {
"invalid",
"char", "short", "int",