Fix build.

Need to include config.h.
This commit is contained in:
Themaister 2013-04-13 00:01:28 +02:00
parent b7ebfa6945
commit a148abf131
2 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#endif
#include "shader_cg.h"
#include "shader_common.h"
#include <Cg/cg.h>
#include <Cg/cgGL.h>
#include "../general.h"

View File

@ -17,9 +17,15 @@
#define SHADER_COMMON_H__
#include "../boolean.h"
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif
#ifdef HAVE_OPENGL
#include "gl_common.h"
#endif
#include "gfx_context.h"
#include "shader_parse.h"
#include "math/matrix.h"