Did all of the .h's in source

(adding)
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

also the Makefile.in's were from previous patch adding
the system depend stuff to configure.ac

Kent
--
mein@cs.umn.edu
This commit is contained in:
Kent Mein
2002-11-25 11:16:17 +00:00
parent 3f2f1571e5
commit b9a19f1ea7
555 changed files with 2210 additions and 29 deletions

View File

@@ -34,6 +34,9 @@
#include <stdio.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef __cplusplus
extern "C" {

View File

@@ -35,6 +35,10 @@
#include "STR_HashedString.h"
#include "GEN_Map.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
template <class T>
class GEN_DataCache
{

View File

@@ -33,6 +33,10 @@
#ifndef __GEN_HASHEDPTR
#define __GEN_HASHEDPTR
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
unsigned int GEN_Hash(unsigned int inDWord);
class GEN_HashedPtr

View File

@@ -32,6 +32,10 @@
#ifndef GEN_MAP_H
#define GEN_MAP_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
template <class Key, class Value>
class GEN_Map {
private:

View File

@@ -34,6 +34,10 @@
#include "MT_Point3.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class GEN_Matrix4x4
{
public:

View File

@@ -37,6 +37,10 @@
#include <stdlib.h> // for NULL !
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* @section GEN_SmartPtr
* This class defines a smart pointer similar to that defined in

View File

@@ -38,6 +38,10 @@
#include "STR_HashedString.h"
#include "GEN_DataCache.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SYS_SingletonSystem
{
public:

View File

@@ -35,6 +35,10 @@
#ifndef __SYSTEM_INCLUDE
#define __SYSTEM_INCLUDE
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define SYS_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
SYS_DECLARE_HANDLE(SYS_SystemHandle);