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-12-27 16:11:01 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-27 16:11:01 +0300
commitf1c4f705a19cc9ae306431be7a970712a40a2d9a (patch)
treea0dac6b28132e480266a7d7c2d5f2c75613ca1a1 /source/blender/bpython
parentf78de74b202cefa087e9d6d1ac62a6d4f0bcf6eb (diff)
Removed the config.h thing from the .h's in the source dir.
So we should be all set now :) Kent -- mein@cs.umn.edu
Diffstat (limited to 'source/blender/bpython')
-rw-r--r--source/blender/bpython/include/BPY_extern.h4
-rw-r--r--source/blender/bpython/include/BPY_objtypes.h4
-rw-r--r--source/blender/bpython/intern/BPY_constobject.h4
-rw-r--r--source/blender/bpython/intern/BPY_csg.h5
-rw-r--r--source/blender/bpython/intern/BPY_listbase_macro.h4
-rw-r--r--source/blender/bpython/intern/BPY_macros.h4
-rw-r--r--source/blender/bpython/intern/BPY_main.h4
-rw-r--r--source/blender/bpython/intern/BPY_modules.h4
-rw-r--r--source/blender/bpython/intern/BPY_tools.h4
-rw-r--r--source/blender/bpython/intern/BPY_types.h4
-rw-r--r--source/blender/bpython/intern/BPY_window.h3
-rw-r--r--source/blender/bpython/intern/api.h5
-rw-r--r--source/blender/bpython/intern/b_import.h4
-rw-r--r--source/blender/bpython/intern/b_interface.h4
-rw-r--r--source/blender/bpython/intern/opy_datablock.h4
-rw-r--r--source/blender/bpython/intern/opy_nmesh.h4
-rw-r--r--source/blender/bpython/intern/opy_vector.h4
17 files changed, 0 insertions, 69 deletions
diff --git a/source/blender/bpython/include/BPY_extern.h b/source/blender/bpython/include/BPY_extern.h
index eba808f6a03..6e92d82e655 100644
--- a/source/blender/bpython/include/BPY_extern.h
+++ b/source/blender/bpython/include/BPY_extern.h
@@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
struct Text;
struct ID;
struct ScriptLink;
diff --git a/source/blender/bpython/include/BPY_objtypes.h b/source/blender/bpython/include/BPY_objtypes.h
index 150905a99dc..f5df73b27b6 100644
--- a/source/blender/bpython/include/BPY_objtypes.h
+++ b/source/blender/bpython/include/BPY_objtypes.h
@@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "DNA_ID.h"
#include "DNA_listBase.h"
#include "DNA_mesh_types.h"
diff --git a/source/blender/bpython/intern/BPY_constobject.h b/source/blender/bpython/intern/BPY_constobject.h
index a9cdf2517f6..5919c281f84 100644
--- a/source/blender/bpython/intern/BPY_constobject.h
+++ b/source/blender/bpython/intern/BPY_constobject.h
@@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
typedef struct {
PyObject_HEAD
PyObject *dict;
diff --git a/source/blender/bpython/intern/BPY_csg.h b/source/blender/bpython/intern/BPY_csg.h
index e81aca184dc..e01a43c5d24 100644
--- a/source/blender/bpython/intern/BPY_csg.h
+++ b/source/blender/bpython/intern/BPY_csg.h
@@ -30,12 +30,7 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "BPY_macros.h"
-
#include "opy_datablock.h"
#include "b_interface.h"
diff --git a/source/blender/bpython/intern/BPY_listbase_macro.h b/source/blender/bpython/intern/BPY_listbase_macro.h
index 44bb0e713f0..cee7f958283 100644
--- a/source/blender/bpython/intern/BPY_listbase_macro.h
+++ b/source/blender/bpython/intern/BPY_listbase_macro.h
@@ -36,10 +36,6 @@
/** example: DEFFUNC_GETLIST(text) defines a method for getting a list
* of text blocks */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
// Example: _GETLIST(name) -> get_namelist
#define _GETLIST(x) get_##x##list
diff --git a/source/blender/bpython/intern/BPY_macros.h b/source/blender/bpython/intern/BPY_macros.h
index 5d7d11d1831..478e2d2c328 100644
--- a/source/blender/bpython/intern/BPY_macros.h
+++ b/source/blender/bpython/intern/BPY_macros.h
@@ -36,10 +36,6 @@
/* Hint: use gcc -E file.c to see what these macros are expanded in */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "api.h" // temporary defines for API version
#include "BPY_listbase_macro.h"
diff --git a/source/blender/bpython/intern/BPY_main.h b/source/blender/bpython/intern/BPY_main.h
index 4b782db1067..fd5ad17eca9 100644
--- a/source/blender/bpython/intern/BPY_main.h
+++ b/source/blender/bpython/intern/BPY_main.h
@@ -31,10 +31,6 @@
*/
// Note: Functions prefixed with BPY_ are called from blenkernel routines */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "Python.h" /* The python includes themselves. */
#include "compile.h" /* to give us PyCodeObject */
#include "eval.h" /* for PyEval_EvalCode.h */
diff --git a/source/blender/bpython/intern/BPY_modules.h b/source/blender/bpython/intern/BPY_modules.h
index 48f26e7db8e..f1c91d23bc8 100644
--- a/source/blender/bpython/intern/BPY_modules.h
+++ b/source/blender/bpython/intern/BPY_modules.h
@@ -31,10 +31,6 @@
* these prototypes and init functions should be homogenized
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
extern PyObject *init_blender(void);
extern PyObject *init_py_nmesh(void);
extern PyObject *init_py_draw(void);
diff --git a/source/blender/bpython/intern/BPY_tools.h b/source/blender/bpython/intern/BPY_tools.h
index dad5df92917..ea54e9ef817 100644
--- a/source/blender/bpython/intern/BPY_tools.h
+++ b/source/blender/bpython/intern/BPY_tools.h
@@ -31,10 +31,6 @@
*/
/* tools.c */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
extern PyObject *BPY_incr_ret (PyObject *ob);
extern PyObject *BPY_err_ret_ob (PyObject *type, char *err);
extern int py_err_ret_int (PyObject *type, char *err);
diff --git a/source/blender/bpython/intern/BPY_types.h b/source/blender/bpython/intern/BPY_types.h
index 565829c5cff..adfcd748f94 100644
--- a/source/blender/bpython/intern/BPY_types.h
+++ b/source/blender/bpython/intern/BPY_types.h
@@ -30,10 +30,6 @@
* API defined Object types
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
extern PyTypeObject PyIpoCurve_Type, PyBezTriple_Type;
extern PyTypeObject Button_Type, Buffer_Type;
extern PyTypeObject NMesh_Type, NMFace_Type, NMVert_Type, NMCol_Type;
diff --git a/source/blender/bpython/intern/BPY_window.h b/source/blender/bpython/intern/BPY_window.h
index 8f8835ccfa7..f47fcccc6c3 100644
--- a/source/blender/bpython/intern/BPY_window.h
+++ b/source/blender/bpython/intern/BPY_window.h
@@ -30,8 +30,5 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
void window_update_curCamera(Object *camera);
diff --git a/source/blender/bpython/intern/api.h b/source/blender/bpython/intern/api.h
index 8c2489c6f07..f73f43af0d3 100644
--- a/source/blender/bpython/intern/api.h
+++ b/source/blender/bpython/intern/api.h
@@ -34,11 +34,6 @@
* see Makefile
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-
#undef EXPERIMENTAL /* undefine this for release, please :-) */
/* Uncomment this if you want to have the new blender module
diff --git a/source/blender/bpython/intern/b_import.h b/source/blender/bpython/intern/b_import.h
index 5813c436220..ec2bf907a9a 100644
--- a/source/blender/bpython/intern/b_import.h
+++ b/source/blender/bpython/intern/b_import.h
@@ -31,10 +31,6 @@
*/
/* b_import.c */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
PyObject *importText (char *name);
PyObject *blender_import (PyObject *self, PyObject *args);
void init_ourImport (void);
diff --git a/source/blender/bpython/intern/b_interface.h b/source/blender/bpython/intern/b_interface.h
index eb1a15751ac..c0c0e1f63f4 100644
--- a/source/blender/bpython/intern/b_interface.h
+++ b/source/blender/bpython/intern/b_interface.h
@@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "DNA_ID.h"
#include "DNA_mesh_types.h"
#include "DNA_view3d_types.h"
diff --git a/source/blender/bpython/intern/opy_datablock.h b/source/blender/bpython/intern/opy_datablock.h
index 3ce7d298cc2..39ffbf50497 100644
--- a/source/blender/bpython/intern/opy_datablock.h
+++ b/source/blender/bpython/intern/opy_datablock.h
@@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "BSE_edit.h" // for getname_< >_ei()
#include "BKE_global.h"
#include "BKE_main.h"
diff --git a/source/blender/bpython/intern/opy_nmesh.h b/source/blender/bpython/intern/opy_nmesh.h
index 50bdea0b0d1..d8d6f2ae9ee 100644
--- a/source/blender/bpython/intern/opy_nmesh.h
+++ b/source/blender/bpython/intern/opy_nmesh.h
@@ -31,10 +31,6 @@
*/
/* opy_nmesh.c */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "DNA_mesh_types.h"
#define NMesh_Check(v) ((v)->ob_type == &NMesh_Type)
diff --git a/source/blender/bpython/intern/opy_vector.h b/source/blender/bpython/intern/opy_vector.h
index 054429d57e3..10535fe5ae2 100644
--- a/source/blender/bpython/intern/opy_vector.h
+++ b/source/blender/bpython/intern/opy_vector.h
@@ -39,10 +39,6 @@
/*****************************/
/* temporar hack for typecasts */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
typedef float (*Matrix4Ptr)[4];
typedef struct {
PyObject_VAR_HEAD