summaryrefslogtreecommitdiffstats
path: root/include/base
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2006-11-10 23:46:05 +0000
committerNoriko Hosoi <nhosoi@redhat.com>2006-11-10 23:46:05 +0000
commit6679b0968981f8be7c33a7df2c30bb5146f3a6d3 (patch)
tree0cc86c8a1be101bb2af749547ef5fec578013bc2 /include/base
parenta765a367145893e3e28dc518f5d08dd9bdfa1358 (diff)
downloadds-6679b0968981f8be7c33a7df2c30bb5146f3a6d3.tar.gz
ds-6679b0968981f8be7c33a7df2c30bb5146f3a6d3.tar.xz
ds-6679b0968981f8be7c33a7df2c30bb5146f3a6d3.zip
Resolves: #214533
Summary: configure needs to support --with-fhs (Comment #6) Changes: Added the following include next to the end of the copyright block. + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif +
Diffstat (limited to 'include/base')
-rw-r--r--include/base/crit.h5
-rw-r--r--include/base/dbtbase.h5
-rw-r--r--include/base/ereport.h5
-rw-r--r--include/base/eventhandler.h5
-rw-r--r--include/base/eventlog.h5
-rw-r--r--include/base/file.h5
-rw-r--r--include/base/fsmutex.h5
-rw-r--r--include/base/lexer.h5
-rw-r--r--include/base/nterr.h5
-rw-r--r--include/base/nterrors.h5
-rw-r--r--include/base/plist.h5
-rw-r--r--include/base/pool.h5
-rw-r--r--include/base/rwlock.h5
-rw-r--r--include/base/shexp.h5
-rw-r--r--include/base/systems.h5
-rw-r--r--include/base/systhr.h5
-rw-r--r--include/base/util.h5
17 files changed, 85 insertions, 0 deletions
diff --git a/include/base/crit.h b/include/base/crit.h
index cb98d5d1..b4f51977 100644
--- a/include/base/crit.h
+++ b/include/base/crit.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 BASE_CRIT_H
#define BASE_CRIT_H
diff --git a/include/base/dbtbase.h b/include/base/dbtbase.h
index 460b5caf..380bfa06 100644
--- a/include/base/dbtbase.h
+++ b/include/base/dbtbase.h
@@ -36,6 +36,11 @@
* All rights reserved.
* END COPYRIGHT BLOCK **/
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+
#define LIBRARY_NAME "base"
static char dbtbaseid[] = "$DBT: base referenced v1 $";
diff --git a/include/base/ereport.h b/include/base/ereport.h
index a097a939..e97be14e 100644
--- a/include/base/ereport.h
+++ b/include/base/ereport.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 BASE_EREPORT_H
#define BASE_EREPORT_H
diff --git a/include/base/eventhandler.h b/include/base/eventhandler.h
index ac8597dc..f4de0c29 100644
--- a/include/base/eventhandler.h
+++ b/include/base/eventhandler.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
+
/*
* eventhandler.h: Handle registration of event handlers
*
diff --git a/include/base/eventlog.h b/include/base/eventlog.h
index c1e748de..5e6c6ac4 100644
--- a/include/base/eventlog.h
+++ b/include/base/eventlog.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
+
// EVENTLOG.H
//
// This file contains the defines that make NT an installable service.
diff --git a/include/base/file.h b/include/base/file.h
index 4ad5de2e..496c33e7 100644
--- a/include/base/file.h
+++ b/include/base/file.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 BASE_FILE_H
#define BASE_FILE_H
diff --git a/include/base/fsmutex.h b/include/base/fsmutex.h
index f5fe2422..5eca55c2 100644
--- a/include/base/fsmutex.h
+++ b/include/base/fsmutex.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
+
/*
* fsmutex: Mutexes that are filesystem-based so they're available from more
* than one process and address space
diff --git a/include/base/lexer.h b/include/base/lexer.h
index 30a29b5e..e8fd8bb9 100644
--- a/include/base/lexer.h
+++ b/include/base/lexer.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_h
#define __lexer_h
diff --git a/include/base/nterr.h b/include/base/nterr.h
index ead6eca7..90446e76 100644
--- a/include/base/nterr.h
+++ b/include/base/nterr.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
+
/*
* Added function prototypes for nterror stuff.
*
diff --git a/include/base/nterrors.h b/include/base/nterrors.h
index c81f355c..895e26c5 100644
--- a/include/base/nterrors.h
+++ b/include/base/nterrors.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
+
/* DO NOT EDIT THIS FILE - it is automatically generated */
typedef struct _NtError {
diff --git a/include/base/plist.h b/include/base/plist.h
index aff540a0..06cffcbc 100644
--- a/include/base/plist.h
+++ b/include/base/plist.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_H
#define _PLIST_H
diff --git a/include/base/pool.h b/include/base/pool.h
index 767eb6eb..30990fce 100644
--- a/include/base/pool.h
+++ b/include/base/pool.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 BASE_POOL_H
#define BASE_POOL_H
diff --git a/include/base/rwlock.h b/include/base/rwlock.h
index 3ca1ffa0..5b5d67b6 100644
--- a/include/base/rwlock.h
+++ b/include/base/rwlock.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
+
/*
* rwlock.h: Shared/Exclusive lock abstraction.
*
diff --git a/include/base/shexp.h b/include/base/shexp.h
index 17856b5e..fb087955 100644
--- a/include/base/shexp.h
+++ b/include/base/shexp.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 BASE_SHEXP_H
#define BASE_SHEXP_H
diff --git a/include/base/systems.h b/include/base/systems.h
index d1403aa0..1b6d41d0 100644
--- a/include/base/systems.h
+++ b/include/base/systems.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 BASE_SYSTEMS_H
#define BASE_SYSTEMS_H
diff --git a/include/base/systhr.h b/include/base/systhr.h
index 098c13e9..20cc4ad5 100644
--- a/include/base/systhr.h
+++ b/include/base/systhr.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 BASE_SYSTHR_H
#define BASE_SYSTHR_H
diff --git a/include/base/util.h b/include/base/util.h
index 3302a1cf..10a59d69 100644
--- a/include/base/util.h
+++ b/include/base/util.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 BASE_UTIL_H
#define BASE_UTIL_H