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:
@@ -17,6 +17,10 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Smart Boolean Value class.
|
||||
* Is used by parser when an expression tree is build containing booleans.
|
||||
|
@@ -19,6 +19,10 @@
|
||||
#include "Expression.h"
|
||||
#include "Value.h" // Added by ClassView
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CConstExpr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CConstExpr,CExpression)
|
||||
|
@@ -32,6 +32,9 @@
|
||||
#ifndef __EXPRESSION_INCLUDE
|
||||
#define __EXPRESSION_INCLUDE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define EXP_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
|
||||
|
||||
|
@@ -17,6 +17,10 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CListValue;
|
||||
|
||||
class CEmptyValue : public CPropValue
|
||||
|
@@ -18,6 +18,10 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CErrorValue : public CPropValue
|
||||
{
|
||||
|
||||
|
@@ -18,6 +18,10 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//extern int gRefCountExpr; // only for debugging purposes (detect mem.leaks)
|
||||
|
||||
|
||||
|
@@ -17,6 +17,9 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CFloatValue : public CPropValue
|
||||
{
|
||||
|
@@ -34,6 +34,10 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIdentifierExpr : public CExpression
|
||||
{
|
||||
CValue* m_idContext;
|
||||
|
@@ -21,6 +21,10 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIfExpr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CIfExpr,CExpression)
|
||||
|
@@ -17,6 +17,10 @@
|
||||
#ifndef __INPUTPARSER_H__
|
||||
#define __INPUTPARSER_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CParser;
|
||||
#include "Expression.h"
|
||||
|
||||
|
@@ -18,6 +18,9 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIntValue : public CPropValue
|
||||
{
|
||||
|
@@ -32,6 +32,10 @@
|
||||
#ifndef __KX_HASHEDPTR
|
||||
#define __KX_HASHEDPTR
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
unsigned int KX_Hash(unsigned int inDWord);
|
||||
|
||||
|
||||
|
@@ -32,6 +32,10 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
@@ -32,6 +32,10 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
@@ -32,6 +32,10 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
@@ -16,6 +16,9 @@
|
||||
#if !defined _LISTVALUE_H
|
||||
#define _LISTVALUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
|
@@ -16,10 +16,12 @@
|
||||
#if !defined(AFX_OPERATOR1EXPR_H__A1653901_BF41_11D1_A51C_00A02472FC58__INCLUDED_)
|
||||
#define AFX_OPERATOR1EXPR_H__A1653901_BF41_11D1_A51C_00A02472FC58__INCLUDED_
|
||||
|
||||
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class COperator1Expr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator1Expr,CExpression)
|
||||
|
@@ -20,6 +20,10 @@
|
||||
#include "Expression.h"
|
||||
#include "Value.h" // Added by ClassView
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class COperator2Expr : public CExpression
|
||||
{
|
||||
|
@@ -29,6 +29,11 @@
|
||||
*
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef NO_EXP_PYTHON_EMBEDDING
|
||||
|
||||
#ifndef _adr_py_lib_h_ // only process once,
|
||||
|
@@ -18,6 +18,10 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CStringValue : public CPropValue
|
||||
{
|
||||
|
||||
|
@@ -13,6 +13,10 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786)
|
||||
#endif //WIN32
|
||||
|
@@ -15,6 +15,9 @@
|
||||
#if !defined _VECTORVALUE_H
|
||||
#define _VECTORVALUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
|
@@ -35,6 +35,10 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// Void value, used to transport *any* type of data
|
||||
|
Reference in New Issue
Block a user