Yes I did it again ;)

added the following 3 lines to everything in the intern dir:
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-25 09:53:07 +00:00
parent d44f2c6dcc
commit 0fbadc8eb7
237 changed files with 977 additions and 66 deletions

View File

@@ -29,6 +29,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "GlutDrawer.h"
#include "MT_assert.h"

View File

@@ -30,9 +30,12 @@
*/
#ifndef NAN_INCLUDED_GlutDrawer
#define NAN_INCLUDED_GlutDrawer
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MEM_NonCopyable.h"
#include "MEM_SmartPtr.h"

View File

@@ -29,8 +29,11 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "GlutKeyboardManager.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "GlutKeyboardManager.h"
#include "MT_assert.h"
MEM_SmartPtr<GlutKeyboardManager> GlutKeyboardManager::m_s_instance = MEM_SmartPtr<GlutKeyboardManager>();
@@ -86,4 +89,4 @@ GlutKeyboardManager::
){
delete(m_handler);
}
}

View File

@@ -30,9 +30,12 @@
*/
#ifndef NAN_INCLUDED_GlutKeyboardManager
#define NAN_INCLUDED_GlutKeyboardManager
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MEM_NonCopyable.h"
#include "MEM_SmartPtr.h"

View File

@@ -29,8 +29,11 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#include "GlutMouseManager.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "GlutMouseManager.h"
#include "MT_assert.h"
MEM_SmartPtr<GlutMouseManager> GlutMouseManager::m_s_instance = MEM_SmartPtr<GlutMouseManager>();

View File

@@ -33,6 +33,11 @@
#define NAN_INCLUDED_GlutMouseManager_h
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MEM_NonCopyable.h"
#include "MEM_SmartPtr.h"

View File

@@ -30,9 +30,12 @@
*/
#ifndef NAN_INCLUDED_ChainDrawer_h
#define NAN_INCLUDED_ChainDrawer_h
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "../common/GlutDrawer.h"
#include "MyGlutMouseHandler.h"
#include "MyGlutKeyHandler.h"

View File

@@ -30,9 +30,13 @@
*/
#ifndef NAN_INCLUDED_MyGlutKeyHandler_h
#define NAN_INCLUDED_MyGlutKeyHandler_h
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "../common/GlutKeyboardManager.h"
class MyGlutKeyHandler : public GlutKeyboardHandler

View File

@@ -30,9 +30,12 @@
*/
#ifndef NAN_INCLUDED_MyGlutMouseHandler_h
#define NAN_INCLUDED_MyGlutMouseHandler_h
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "../common/GlutMouseManager.h"
#include <GL/glut.h>
#include "IK_solver.h"

View File

@@ -60,6 +60,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MEM_SmartPtr.h"