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:
authorStephen Swaney <sswaney@centurytel.net>2006-04-11 23:05:58 +0400
committerStephen Swaney <sswaney@centurytel.net>2006-04-11 23:05:58 +0400
commit371008fe1e145655cc929d25a327e205e6e841c1 (patch)
treeb19f75b8526f822c000b4dfad66ac2885b0fee9c /source/blender/python/BPY_extern.h
parent18a8479931d56bef403871f5b2542198388c1c2b (diff)
last release we lost our reassuring msg when no local python install
was found. Restore warm fuzzy msg. Text is now Looking for installed Python version XXX followed by either Got it! or 'import site' failed; use -v for traceback No installed Python found. Only built-in modules are available. Some scripts may not run. Continuing happily. And while we are at it, clean up a couple of compiler warnings.
Diffstat (limited to 'source/blender/python/BPY_extern.h')
-rw-r--r--source/blender/python/BPY_extern.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/python/BPY_extern.h b/source/blender/python/BPY_extern.h
index 97e8819c77a..ffb5f258d8d 100644
--- a/source/blender/python/BPY_extern.h
+++ b/source/blender/python/BPY_extern.h
@@ -30,6 +30,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifndef BPY_EXTERN_H
+#define BPY_EXTERN_H
+
extern char bprogname[]; /* holds a copy of argv[0], from creator.c */
struct Text; /* defined in DNA_text_types.h */
@@ -93,3 +96,5 @@ extern "C" {
#ifdef __cplusplus
} /* extern "C" */
#endif
+
+#endif /* BPY_EXTERN_H */