summaryrefslogtreecommitdiffstats
path: root/lib/base
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base')
-rw-r--r--lib/base/crit.cpp5
-rw-r--r--lib/base/dns.cpp5
-rw-r--r--lib/base/dnsdmain.cpp5
-rw-r--r--lib/base/ereport.cpp5
-rw-r--r--lib/base/eventlog.cpp5
-rw-r--r--lib/base/file.cpp5
-rw-r--r--lib/base/fsmutex.cpp5
-rw-r--r--lib/base/lexer.cpp5
-rw-r--r--lib/base/lexer_pvt.h5
-rw-r--r--lib/base/net.cpp5
-rw-r--r--lib/base/nscperror.c5
-rw-r--r--lib/base/nterrors.cpp5
-rw-r--r--lib/base/plist.cpp5
-rw-r--r--lib/base/plist_pvt.h5
-rw-r--r--lib/base/pool.cpp5
-rw-r--r--lib/base/rwlock.cpp5
-rw-r--r--lib/base/shexp.cpp5
-rw-r--r--lib/base/system.cpp5
-rw-r--r--lib/base/systhr.cpp5
-rw-r--r--lib/base/util.cpp5
20 files changed, 100 insertions, 0 deletions
diff --git a/lib/base/crit.cpp b/lib/base/crit.cpp
index b4495106..3e057494 100644
--- a/lib/base/crit.cpp
+++ b/lib/base/crit.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* crit.c: Critical section abstraction. Used in threaded servers to protect
* areas where two threads can interfere with each other.
diff --git a/lib/base/dns.cpp b/lib/base/dns.cpp
index f2e5454e..62d3e44b 100644
--- a/lib/base/dns.cpp
+++ b/lib/base/dns.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* dns.c: DNS resolution routines
*
diff --git a/lib/base/dnsdmain.cpp b/lib/base/dnsdmain.cpp
index 6ed82428..7cbc0567 100644
--- a/lib/base/dnsdmain.cpp
+++ b/lib/base/dnsdmain.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* dnsdmain.c: DNS domain guessing stuff moved out of dns.c because of the
* string ball problems
diff --git a/lib/base/ereport.cpp b/lib/base/ereport.cpp
index d05a1b7e..ba3df4e5 100644
--- a/lib/base/ereport.cpp
+++ b/lib/base/ereport.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* ereport.c: Records transactions, reports errors to administrators, etc.
*
diff --git a/lib/base/eventlog.cpp b/lib/base/eventlog.cpp
index b0be1ad0..7144edd6 100644
--- a/lib/base/eventlog.cpp
+++ b/lib/base/eventlog.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
// //
// Name: EVENTLOG //
// Platforms: WIN32 //
diff --git a/lib/base/file.cpp b/lib/base/file.cpp
index 97e5fe85..0e9e87ec 100644
--- a/lib/base/file.cpp
+++ b/lib/base/file.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* file.c: system specific functions for reading/writing files
*
diff --git a/lib/base/fsmutex.cpp b/lib/base/fsmutex.cpp
index bd4f4357..f43f4c0f 100644
--- a/lib/base/fsmutex.cpp
+++ b/lib/base/fsmutex.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* fsmutex: Mutexes that are filesystem-based so they're available from more
* than one process and address space
diff --git a/lib/base/lexer.cpp b/lib/base/lexer.cpp
index d5292f0b..237edf0d 100644
--- a/lib/base/lexer.cpp
+++ b/lib/base/lexer.cpp
@@ -36,6 +36,11 @@
* All rights reserved.
* END COPYRIGHT BLOCK **/
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+
/*
* Description (lexer.c)
*
diff --git a/lib/base/lexer_pvt.h b/lib/base/lexer_pvt.h
index 528144fd..45488e01 100644
--- a/lib/base/lexer_pvt.h
+++ b/lib/base/lexer_pvt.h
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
#ifndef __LEXER_PVT_H
#define __LEXER_PVT_H
diff --git a/lib/base/net.cpp b/lib/base/net.cpp
index 5c31032b..53c79f3a 100644
--- a/lib/base/net.cpp
+++ b/lib/base/net.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* net.c: sockets abstraction and DNS related things
*
diff --git a/lib/base/nscperror.c b/lib/base/nscperror.c
index 8c30a4e0..e8881408 100644
--- a/lib/base/nscperror.c
+++ b/lib/base/nscperror.c
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/* nscperrors.c
* Very crude error handling for nspr and libsec.
*/
diff --git a/lib/base/nterrors.cpp b/lib/base/nterrors.cpp
index 1104515a..68c31fed 100644
--- a/lib/base/nterrors.cpp
+++ b/lib/base/nterrors.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* nterrors.c: Conversion of error numbers to explanation strings
*
diff --git a/lib/base/plist.cpp b/lib/base/plist.cpp
index 6482cd05..3c3192d6 100644
--- a/lib/base/plist.cpp
+++ b/lib/base/plist.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* MODULE: plist.c
*
diff --git a/lib/base/plist_pvt.h b/lib/base/plist_pvt.h
index e007a7ce..c8668517 100644
--- a/lib/base/plist_pvt.h
+++ b/lib/base/plist_pvt.h
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
#ifndef _PLIST_PVT_H
#define _PLIST_PVT_H
diff --git a/lib/base/pool.cpp b/lib/base/pool.cpp
index 8a379549..2299309b 100644
--- a/lib/base/pool.cpp
+++ b/lib/base/pool.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* Generic pool handling routines.
*
diff --git a/lib/base/rwlock.cpp b/lib/base/rwlock.cpp
index af504a87..81d4e47a 100644
--- a/lib/base/rwlock.cpp
+++ b/lib/base/rwlock.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
#include <stdlib.h>
#include "crit.h"
#include "rwlock.h"
diff --git a/lib/base/shexp.cpp b/lib/base/shexp.cpp
index 7b0b2652..11938cb4 100644
--- a/lib/base/shexp.cpp
+++ b/lib/base/shexp.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* shexp.c: shell-like wildcard match routines
*
diff --git a/lib/base/system.cpp b/lib/base/system.cpp
index 22da0991..287d5a84 100644
--- a/lib/base/system.cpp
+++ b/lib/base/system.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* system.c: A grab bag of system-level abstractions
*
diff --git a/lib/base/systhr.cpp b/lib/base/systhr.cpp
index 5742da2d..87d32522 100644
--- a/lib/base/systhr.cpp
+++ b/lib/base/systhr.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* systhr.c: Abstracted threading mechanisms
*
diff --git a/lib/base/util.cpp b/lib/base/util.cpp
index 3f4aa766..7e9bdbdf 100644
--- a/lib/base/util.cpp
+++ b/lib/base/util.cpp
@@ -35,6 +35,11 @@
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
/*
* util.c: A hodge podge of utility functions and standard functions which
* are unavailable on certain systems