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:
2002-11-25 11:16:17 +00:00
parent 3f2f1571e5
commit b9a19f1ea7
555 changed files with 2210 additions and 29 deletions

View File

@@ -36,6 +36,9 @@
#include <stddef.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef void* IMG_BrushPtr;
typedef void* IMG_CanvasPtr;

View File

@@ -32,6 +32,10 @@
#ifndef _H_IMG_BrushRGBA32
#define _H_IMG_BrushRGBA32
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "IMG_PixmapRGBA32.h"

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_CanvasRGBA32
#define _H_IMG_CanvasRGBA32
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "IMG_PixmapRGBA32.h"
#include "IMG_BrushRGBA32.h"

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_Color
#define _H_IMG_Color
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class IMG_ColorRGBA;
/**

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_Line
#define _H_IMG_Line
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "IMG_Types.h"
#include <math.h>

View File

@@ -37,6 +37,10 @@
#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.

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_Pixmap
#define _H_IMG_Pixmap
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "IMG_Types.h"
#include "IMG_Color.h"
#include "IMG_Rect.h"

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_PixmapRGBA32
#define _H_IMG_PixmapRGBA32
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "IMG_Pixmap.h"
#include "IMG_MemPtr.h"

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_Rect
#define _H_IMG_Rect
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "IMG_Types.h"
#include "IMG_Line.h"

View File

@@ -35,6 +35,10 @@
#ifndef _H_IMG_Types
#define _H_IMG_Types
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef int TInt32;
typedef unsigned char TUns8;
typedef unsigned int TUns32;