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 13:13:52 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 13:13:52 +0300
commit3f2f1571e5b1839c88f9facfe6834ec19f6e533a (patch)
tree9efb2688d3752ed99138db5faa8b6773c6f14f44 /source/blender/bpython
parent0fbadc8eb7c93e10902cc4357a42dcd73c0a076b (diff)
added the following to configure.ac
+case "$target" in + *sparc* ) + AC_DEFINE(SUN_OGL_NO_VERTEX_MACROS,1,[Fix for Sun's GL]) + ;; +esac + Also added the include to the above .c files. I'm going to add it to everything in source just haven't gotten that far yet. Kent
Diffstat (limited to 'source/blender/bpython')
-rw-r--r--source/blender/bpython/intern/opy_draw.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/bpython/intern/opy_draw.c b/source/blender/bpython/intern/opy_draw.c
index 23929b1392f..36e3382f88f 100644
--- a/source/blender/bpython/intern/opy_draw.c
+++ b/source/blender/bpython/intern/opy_draw.c
@@ -32,6 +32,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef WIN32
#include "BLI_winstuff.h"
#endif