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-12-26 21:25:17 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-26 21:25:17 +0300
commitf78de74b202cefa087e9d6d1ac62a6d4f0bcf6eb (patch)
treeb60a385484bbf8b8dfd8547b0510d63a10db5fb9 /intern/img
parent331fffaecb45371875d60f015da24c911da8e42e (diff)
WooHoo me again ;)
I took out the following from the includes in the intern dir that still had it: -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern/img')
-rw-r--r--intern/img/extern/IMG_Pixmap.h4
-rw-r--r--intern/img/extern/IMG_PixmapRGBA32.h5
-rw-r--r--intern/img/intern/IMG_Color.h5
-rw-r--r--intern/img/intern/IMG_MemPtr.h4
4 files changed, 0 insertions, 18 deletions
diff --git a/intern/img/extern/IMG_Pixmap.h b/intern/img/extern/IMG_Pixmap.h
index 8f07e6a46bb..d9ab96cd745 100644
--- a/intern/img/extern/IMG_Pixmap.h
+++ b/intern/img/extern/IMG_Pixmap.h
@@ -41,10 +41,6 @@
#ifndef _H_IMG_Pixmap
#define _H_IMG_Pixmap
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "GEN_Types.h"
#include "GEN_Rect.h"
diff --git a/intern/img/extern/IMG_PixmapRGBA32.h b/intern/img/extern/IMG_PixmapRGBA32.h
index 7d7a937321d..861b9ab3ebf 100644
--- a/intern/img/extern/IMG_PixmapRGBA32.h
+++ b/intern/img/extern/IMG_PixmapRGBA32.h
@@ -45,11 +45,6 @@
#ifndef _H_IMG_PixmapRGBA32
#define _H_IMG_PixmapRGBA32
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-
#include "IMG_Pixmap.h"
#include "IMG_MemPtr.h"
#include "IMG_Color.h"
diff --git a/intern/img/intern/IMG_Color.h b/intern/img/intern/IMG_Color.h
index 71273c22ae9..b7b97fc4aa2 100644
--- a/intern/img/intern/IMG_Color.h
+++ b/intern/img/intern/IMG_Color.h
@@ -43,13 +43,8 @@
#ifndef _H_IMG_Color
#define _H_IMG_Color
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
class IMG_ColorRGBA;
-
class IMG_ColorRGB {
public:
/**
diff --git a/intern/img/intern/IMG_MemPtr.h b/intern/img/intern/IMG_MemPtr.h
index 21a64a848a8..a89e1f48d00 100644
--- a/intern/img/intern/IMG_MemPtr.h
+++ b/intern/img/intern/IMG_MemPtr.h
@@ -40,10 +40,6 @@
#include <stddef.h>
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/**
* A memory pointer for memory of any type.
* It can be used to avoid memory leaks when allocating memory in constructors.