Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-11-25 12:53:07 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 12:53:07 +0300
commit0fbadc8eb7c93e10902cc4357a42dcd73c0a076b (patch)
tree66eca67171025b24578bda6cb5484a141d894a30 /intern/memutil
parentd44f2c6dcc8fbd38790166da79e930e6d79abd08 (diff)
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
Diffstat (limited to 'intern/memutil')
-rw-r--r--intern/memutil/MEM_NonCopyable.h6
-rw-r--r--intern/memutil/MEM_RefCountPtr.h5
-rw-r--r--intern/memutil/MEM_RefCounted.h3
-rw-r--r--intern/memutil/MEM_RefCountedC-Api.h5
-rw-r--r--intern/memutil/MEM_SmartPtr.h5
-rw-r--r--intern/memutil/intern/MEM_RefCountedC-Api.cpp5
6 files changed, 25 insertions, 4 deletions
diff --git a/intern/memutil/MEM_NonCopyable.h b/intern/memutil/MEM_NonCopyable.h
index da67ce6b3e3..635c61704cd 100644
--- a/intern/memutil/MEM_NonCopyable.h
+++ b/intern/memutil/MEM_NonCopyable.h
@@ -30,9 +30,13 @@
*/
#ifndef NAN_INCLUDED_NonCopyable_h
-
#define NAN_INCLUDED_NonCopyable_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
/**
* Simple class that makes sure sub classes cannot
* generate standard copy constructors.
diff --git a/intern/memutil/MEM_RefCountPtr.h b/intern/memutil/MEM_RefCountPtr.h
index 0888ad77e8b..8f90226688b 100644
--- a/intern/memutil/MEM_RefCountPtr.h
+++ b/intern/memutil/MEM_RefCountPtr.h
@@ -30,9 +30,12 @@
*/
#ifndef NAN_INCLUDED_MEM_RefCountPtr_h
-
#define NAN_INCLUDED_MEM_RefCountPtr_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/**
* $Id$
* Copyright (C) 2001 NaN Technologies B.V.
diff --git a/intern/memutil/MEM_RefCounted.h b/intern/memutil/MEM_RefCounted.h
index 9cb1e755247..b72ba6590f9 100644
--- a/intern/memutil/MEM_RefCounted.h
+++ b/intern/memutil/MEM_RefCounted.h
@@ -40,6 +40,9 @@
#ifndef _H_MEM_REF_COUNTED
#define _H_MEM_REF_COUNTED
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
/**
* An object with reference counting.
diff --git a/intern/memutil/MEM_RefCountedC-Api.h b/intern/memutil/MEM_RefCountedC-Api.h
index 0bba70388c5..373042ba350 100644
--- a/intern/memutil/MEM_RefCountedC-Api.h
+++ b/intern/memutil/MEM_RefCountedC-Api.h
@@ -41,6 +41,11 @@
#ifndef _H_MEM_REF_COUNTED_C_API
#define _H_MEM_REF_COUNTED_C_API
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
/** A pointer to a private object. */
typedef struct MEM_TOpaqueObject* MEM_TObjectPtr;
/** A pointer to a shared object. */
diff --git a/intern/memutil/MEM_SmartPtr.h b/intern/memutil/MEM_SmartPtr.h
index 93b545d9ced..144c4fd92c9 100644
--- a/intern/memutil/MEM_SmartPtr.h
+++ b/intern/memutil/MEM_SmartPtr.h
@@ -30,9 +30,12 @@
*/
#ifndef NAN_INCLUDED_MEM_SmartPtr_h
-
#define NAN_INCLUDED_MEM_SmartPtr_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/**
* $Id$
* Copyright (C) 2001 NaN Technologies B.V.
diff --git a/intern/memutil/intern/MEM_RefCountedC-Api.cpp b/intern/memutil/intern/MEM_RefCountedC-Api.cpp
index 92f02ac78fa..87f7b0a6901 100644
--- a/intern/memutil/intern/MEM_RefCountedC-Api.cpp
+++ b/intern/memutil/intern/MEM_RefCountedC-Api.cpp
@@ -37,8 +37,11 @@
* @date Jun 17, 2001
*/
-#include "MEM_RefCountedC-Api.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include "MEM_RefCountedC-Api.h"
#include "MEM_RefCounted.h"