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:
@@ -64,6 +64,10 @@
|
||||
#ifndef GEN_LIST_H
|
||||
#define GEN_LIST_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class GEN_Link {
|
||||
public:
|
||||
GEN_Link() : m_next(0), m_prev(0) {}
|
||||
|
@@ -30,9 +30,13 @@
|
||||
*/
|
||||
|
||||
#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:
|
||||
|
@@ -30,9 +30,12 @@
|
||||
*/
|
||||
|
||||
#ifndef INCLUDED_MT_CmMatrix4x4
|
||||
|
||||
#define INCLUDED_MT_CmMatrix4x4
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* A 4x4 matrix. This is an OpenGl style matrix (column major) meaning
|
||||
* that the vector {m[0][0],m[0][1],m[0][2],m[0][3]} is the first column of
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_MATRIX3X3_H
|
||||
#define MT_MATRIX3X3_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
@@ -39,6 +39,10 @@
|
||||
#ifndef MT_MATRIX4X4_H
|
||||
#define MT_MATRIX4X4_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Vector4.h"
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_MINMAX_H
|
||||
#define MT_MINMAX_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
inline const T& MT_min(const T& a, const T& b) {
|
||||
return b < a ? b : a;
|
||||
|
@@ -30,9 +30,12 @@
|
||||
*/
|
||||
|
||||
#ifndef GEN_OPTIMIZE_H
|
||||
|
||||
#define GEN_OPTIMIZE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef GEN_INLINED
|
||||
#define GEN_INLINE inline
|
||||
#else
|
||||
|
@@ -30,9 +30,12 @@
|
||||
*/
|
||||
|
||||
#ifndef MT_PLANE3
|
||||
|
||||
#define MT_PLANE3
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Tuple4.h"
|
||||
#include "MT_Point3.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_POINT2_H
|
||||
#define MT_POINT2_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector2.h"
|
||||
|
||||
class MT_Point2 : public MT_Vector2 {
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_POINT_H
|
||||
#define MT_POINT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
||||
class MT_Point3 : public MT_Vector3 {
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_QUATERNION_H
|
||||
#define MT_QUATERNION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
@@ -49,6 +49,10 @@
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_random.h"
|
||||
#include "NM_Scalar.h"
|
||||
|
||||
|
@@ -30,9 +30,12 @@
|
||||
*/
|
||||
|
||||
#ifndef GEN_STREAM_H
|
||||
|
||||
#define GEN_STREAM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __CUSTOM_STREAM
|
||||
|
||||
class MT_OStream
|
||||
|
@@ -53,6 +53,10 @@
|
||||
#ifndef MT_TRANSFORM_H
|
||||
#define MT_TRANSFORM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Point3.h"
|
||||
#include "MT_Matrix3x3.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_Tuple2_H
|
||||
#define MT_Tuple2_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Stream.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_TUPLE3_H
|
||||
#define MT_TUPLE3_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Stream.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_TUPLE4_H
|
||||
#define MT_TUPLE4_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Stream.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_VECTOR2_H
|
||||
#define MT_VECTOR2_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
#include "MT_Tuple2.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_VECTOR3_H
|
||||
#define MT_VECTOR3_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
#include "MT_Tuple3.h"
|
||||
|
||||
|
@@ -46,6 +46,10 @@
|
||||
#ifndef MT_VECTOR4_H
|
||||
#define MT_VECTOR4_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Tuple4.h"
|
||||
|
@@ -30,9 +30,12 @@
|
||||
*/
|
||||
|
||||
#ifndef MT_ASSERT_H
|
||||
|
||||
#define MT_ASSERT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef MT_NDEBUG
|
||||
|
||||
#define MT_assert(predicate) ((void)0)
|
||||
|
@@ -30,9 +30,12 @@
|
||||
*/
|
||||
|
||||
#ifndef MT_RANDOM_H
|
||||
|
||||
#define MT_RANDOM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#define MT_RAND_MAX ULONG_MAX
|
||||
|
@@ -33,6 +33,10 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
class NM_Scalar {
|
||||
public:
|
||||
|
@@ -60,6 +60,9 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_CmMatrix4x4.h"
|
||||
#include "MT_Vector3.h"
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Matrix3x3.h"
|
||||
|
||||
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Matrix4x4.h"
|
||||
|
||||
|
||||
|
@@ -60,6 +60,9 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef GEN_INLINED
|
||||
#include "MT_Plane3.h"
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Point3.h"
|
||||
|
||||
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Quaternion.h"
|
||||
|
||||
|
||||
|
@@ -50,6 +50,10 @@
|
||||
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Transform.h"
|
||||
|
||||
void MT_Transform::setValue(const float *m) {
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector2.h"
|
||||
|
||||
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
||||
|
||||
|
@@ -29,6 +29,10 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector4.h"
|
||||
|
||||
|
||||
|
@@ -58,6 +58,10 @@
|
||||
/* When you use this, send an email to: matumoto@math.keio.ac.jp */
|
||||
/* with an appropriate reference to your work. */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_random.h"
|
||||
|
||||
/* Period parameters */
|
||||
|
Reference in New Issue
Block a user