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:
2002-11-25 09:53:07 +00:00
parent d44f2c6dcc
commit 0fbadc8eb7
237 changed files with 977 additions and 66 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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. */

View File

@@ -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.

View File

@@ -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"