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/avi
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/avi')
-rw-r--r--source/blender/avi/intern/avirgb.c4
-rw-r--r--source/blender/avi/intern/endian.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/avi/intern/avirgb.c b/source/blender/avi/intern/avirgb.c
index 4ebf381e5bf..8461167efc8 100644
--- a/source/blender/avi/intern/avirgb.c
+++ b/source/blender/avi/intern/avirgb.c
@@ -35,6 +35,10 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "AVI_avi.h"
#include <stdlib.h>
#include <string.h>
diff --git a/source/blender/avi/intern/endian.c b/source/blender/avi/intern/endian.c
index 144e7ee86db..95492805760 100644
--- a/source/blender/avi/intern/endian.c
+++ b/source/blender/avi/intern/endian.c
@@ -35,6 +35,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
* */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdlib.h>
#include <string.h>
#include <stdio.h>