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:
authorCampbell Barton <ideasman42@gmail.com>2010-04-18 14:28:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-18 14:28:37 +0400
commit8f1500da005e4f84fd593492822c6d99e768c354 (patch)
tree942f6960b50fb03430f4dcd934837213d7d76695 /source/blender/blenlib
parent45441c07d4609493aecf265b64ad0c108722e9db (diff)
remove config.h references, was added for automake build system rev around 124-126 but isnt used by any build systems now.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/BLI_ghash.c4
-rw-r--r--source/blender/blenlib/intern/BLI_linklist.c4
-rw-r--r--source/blender/blenlib/intern/BLI_memarena.c4
-rw-r--r--source/blender/blenlib/intern/dynlib.c4
-rw-r--r--source/blender/blenlib/intern/fnmatch.c4
-rw-r--r--source/blender/blenlib/intern/gsqueue.c4
-rw-r--r--source/blender/blenlib/intern/noise.c4
-rw-r--r--source/blender/blenlib/intern/path_util.c4
-rw-r--r--source/blender/blenlib/intern/rand.c4
-rw-r--r--source/blender/blenlib/intern/rct.c4
-rw-r--r--source/blender/blenlib/intern/scanfill.c4
-rw-r--r--source/blender/blenlib/intern/time.c4
-rw-r--r--source/blender/blenlib/intern/winstuff.c4
13 files changed, 0 insertions, 52 deletions
diff --git a/source/blender/blenlib/intern/BLI_ghash.c b/source/blender/blenlib/intern/BLI_ghash.c
index 82241ad2cfb..ee312174cf8 100644
--- a/source/blender/blenlib/intern/BLI_ghash.c
+++ b/source/blender/blenlib/intern/BLI_ghash.c
@@ -32,10 +32,6 @@
#include "BLI_ghash.h"
#include "BLO_sys_types.h" // for intptr_t support
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/***/
unsigned int hashsizes[]= {
diff --git a/source/blender/blenlib/intern/BLI_linklist.c b/source/blender/blenlib/intern/BLI_linklist.c
index 62d6f6b936c..afa4d273090 100644
--- a/source/blender/blenlib/intern/BLI_linklist.c
+++ b/source/blender/blenlib/intern/BLI_linklist.c
@@ -32,10 +32,6 @@
#include "BLI_linklist.h"
#include "BLI_memarena.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
int BLI_linklist_length(LinkNode *list) {
if (0) {
return list?(1+BLI_linklist_length(list->next)):0;
diff --git a/source/blender/blenlib/intern/BLI_memarena.c b/source/blender/blenlib/intern/BLI_memarena.c
index cdb88e91cad..de2a73e065f 100644
--- a/source/blender/blenlib/intern/BLI_memarena.c
+++ b/source/blender/blenlib/intern/BLI_memarena.c
@@ -34,10 +34,6 @@
#include "BLI_memarena.h"
#include "BLI_linklist.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
struct MemArena {
unsigned char *curbuf;
int bufsize, cursize;
diff --git a/source/blender/blenlib/intern/dynlib.c b/source/blender/blenlib/intern/dynlib.c
index cc681a4c7c7..f42b342e326 100644
--- a/source/blender/blenlib/intern/dynlib.c
+++ b/source/blender/blenlib/intern/dynlib.c
@@ -31,10 +31,6 @@
#include "../PIL_dynlib.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#if !defined(CHAR_MAX)
#define CHAR_MAX 255
#endif
diff --git a/source/blender/blenlib/intern/fnmatch.c b/source/blender/blenlib/intern/fnmatch.c
index a78f9ad7585..c44ee754110 100644
--- a/source/blender/blenlib/intern/fnmatch.c
+++ b/source/blender/blenlib/intern/fnmatch.c
@@ -16,10 +16,6 @@
#ifdef WIN32
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
/* Enable GNU extensions in fnmatch.h. */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
diff --git a/source/blender/blenlib/intern/gsqueue.c b/source/blender/blenlib/intern/gsqueue.c
index fbc1708c133..a8b40e187d8 100644
--- a/source/blender/blenlib/intern/gsqueue.c
+++ b/source/blender/blenlib/intern/gsqueue.c
@@ -31,10 +31,6 @@
#include "MEM_guardedalloc.h"
#include "BLI_gsqueue.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
typedef struct _GSQueueElem GSQueueElem;
struct _GSQueueElem {
GSQueueElem *next;
diff --git a/source/blender/blenlib/intern/noise.c b/source/blender/blenlib/intern/noise.c
index 44429eca3b1..d6b8582ef26 100644
--- a/source/blender/blenlib/intern/noise.c
+++ b/source/blender/blenlib/intern/noise.c
@@ -36,10 +36,6 @@
#include <math.h>
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/* local */
static float noise3_perlin(float vec[3]);
//static float turbulence_perlin(float *point, float lofreq, float hifreq);
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index 1fe847636bd..fa77b2138da 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -48,10 +48,6 @@
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef WIN32
#include <io.h>
diff --git a/source/blender/blenlib/intern/rand.c b/source/blender/blenlib/intern/rand.c
index 4e469ad3834..7c14cfd3426 100644
--- a/source/blender/blenlib/intern/rand.c
+++ b/source/blender/blenlib/intern/rand.c
@@ -37,10 +37,6 @@
#include "BLI_threads.h"
#include "BLI_rand.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#if defined(WIN32) && !defined(FREE_WINDOWS)
typedef unsigned __int64 r_uint64;
diff --git a/source/blender/blenlib/intern/rct.c b/source/blender/blenlib/intern/rct.c
index 4506115cd8c..7fce9ac7e8d 100644
--- a/source/blender/blenlib/intern/rct.c
+++ b/source/blender/blenlib/intern/rct.c
@@ -37,10 +37,6 @@
#include "DNA_vec_types.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
int BLI_rcti_is_empty(rcti * rect)
{
return ((rect->xmax<=rect->xmin) ||
diff --git a/source/blender/blenlib/intern/scanfill.c b/source/blender/blenlib/intern/scanfill.c
index 3329562f3a2..92a50ac06c7 100644
--- a/source/blender/blenlib/intern/scanfill.c
+++ b/source/blender/blenlib/intern/scanfill.c
@@ -35,10 +35,6 @@
#include "BLI_listbase.h"
#include "BLI_math.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/* callbacks for errors and interrupts and some goo */
static void (*BLI_localErrorCallBack)(char*) = NULL;
static int (*BLI_localInterruptCallBack)(void) = NULL;
diff --git a/source/blender/blenlib/intern/time.c b/source/blender/blenlib/intern/time.c
index 304884ba8ca..0992e08b28f 100644
--- a/source/blender/blenlib/intern/time.c
+++ b/source/blender/blenlib/intern/time.c
@@ -27,10 +27,6 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef WIN32
#include "PIL_time.h"
#include <windows.h>
diff --git a/source/blender/blenlib/intern/winstuff.c b/source/blender/blenlib/intern/winstuff.c
index 0463e6ea00b..f2261546f5c 100644
--- a/source/blender/blenlib/intern/winstuff.c
+++ b/source/blender/blenlib/intern/winstuff.c
@@ -28,10 +28,6 @@
* Windows-posix compatibility layer, windows-specific functions.
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef WIN32
#include <stdlib.h>