diff options
author | Noriko Hosoi <nhosoi@redhat.com> | 2006-11-10 23:46:05 +0000 |
---|---|---|
committer | Noriko Hosoi <nhosoi@redhat.com> | 2006-11-10 23:46:05 +0000 |
commit | 6679b0968981f8be7c33a7df2c30bb5146f3a6d3 (patch) | |
tree | 0cc86c8a1be101bb2af749547ef5fec578013bc2 /ldap/libraries | |
parent | a765a367145893e3e28dc518f5d08dd9bdfa1358 (diff) | |
download | ds-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 'ldap/libraries')
-rw-r--r-- | ldap/libraries/libavl/avl.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libavl/testavl.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libldif/fileurl.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libldif/fileurl.h | 5 | ||||
-rw-r--r-- | ldap/libraries/libldif/line64.c | 5 | ||||
-rw-r--r-- | ldap/libraries/liblitekey/keycheck.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libutil/getopt.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libutil/ntdebug.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libutil/ntevent.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libutil/ntreg.c | 5 | ||||
-rw-r--r-- | ldap/libraries/libutil/ntresource.h | 5 | ||||
-rw-r--r-- | ldap/libraries/libutil/ntstubs.c | 5 |
12 files changed, 60 insertions, 0 deletions
diff --git a/ldap/libraries/libavl/avl.c b/ldap/libraries/libavl/avl.c index e26aab69..75778916 100644 --- a/ldap/libraries/libavl/avl.c +++ b/ldap/libraries/libavl/avl.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 + /* avl.c - routines to implement an avl tree */ /* * Copyright (c) 1993 Regents of the University of Michigan. diff --git a/ldap/libraries/libavl/testavl.c b/ldap/libraries/libavl/testavl.c index d27df39c..eae9b7a2 100644 --- a/ldap/libraries/libavl/testavl.c +++ b/ldap/libraries/libavl/testavl.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 + /* testavl.c - Test Tim Howes AVL code */ #ifdef _WIN32 #include <windows.h> diff --git a/ldap/libraries/libldif/fileurl.c b/ldap/libraries/libldif/fileurl.c index 55b8ece7..751c0bf3 100644 --- a/ldap/libraries/libldif/fileurl.c +++ b/ldap/libraries/libldif/fileurl.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 + /* * LDIF tools fileurl.c -- functions for handling file URLs. * Used by ldif_parse_line. diff --git a/ldap/libraries/libldif/fileurl.h b/ldap/libraries/libldif/fileurl.h index e0acddf9..79ce02ed 100644 --- a/ldap/libraries/libldif/fileurl.h +++ b/ldap/libraries/libldif/fileurl.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 + /* * LDIF tools fileurl.h -- defines for file URL functions. * Used by ldif_parse_line. diff --git a/ldap/libraries/libldif/line64.c b/ldap/libraries/libldif/line64.c index 22adfbef..9cdc4941 100644 --- a/ldap/libraries/libldif/line64.c +++ b/ldap/libraries/libldif/line64.c @@ -35,6 +35,11 @@ * All rights reserved. * --- END COPYRIGHT BLOCK --- */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * The contents of this file are subject to the Netscape Public License diff --git a/ldap/libraries/liblitekey/keycheck.c b/ldap/libraries/liblitekey/keycheck.c index b66e6bf0..6d9d41b8 100644 --- a/ldap/libraries/liblitekey/keycheck.c +++ b/ldap/libraries/liblitekey/keycheck.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 + /* * keycheck.c */ diff --git a/ldap/libraries/libutil/getopt.c b/ldap/libraries/libutil/getopt.c index 612d78fe..e3c5d56f 100644 --- a/ldap/libraries/libutil/getopt.c +++ b/ldap/libraries/libutil/getopt.c @@ -17,6 +17,11 @@ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #ifdef _WINDOWS #if defined(LIBC_SCCS) && !defined(lint) diff --git a/ldap/libraries/libutil/ntdebug.c b/ldap/libraries/libutil/ntdebug.c index 367ca6b9..9f429574 100644 --- a/ldap/libraries/libutil/ntdebug.c +++ b/ldap/libraries/libutil/ntdebug.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 + /****************************************************** * * ntdebug.c - Sends debug output to window and stdout diff --git a/ldap/libraries/libutil/ntevent.c b/ldap/libraries/libutil/ntevent.c index 77eb3713..0eab55ef 100644 --- a/ldap/libraries/libutil/ntevent.c +++ b/ldap/libraries/libutil/ntevent.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #ifdef _WIN32 #include <windows.h> diff --git a/ldap/libraries/libutil/ntreg.c b/ldap/libraries/libutil/ntreg.c index d81446de..1efd536e 100644 --- a/ldap/libraries/libutil/ntreg.c +++ b/ldap/libraries/libutil/ntreg.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #ifdef _WIN32 #include <windows.h> diff --git a/ldap/libraries/libutil/ntresource.h b/ldap/libraries/libutil/ntresource.h index 173e5476..c8953513 100644 --- a/ldap/libraries/libutil/ntresource.h +++ b/ldap/libraries/libutil/ntresource.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 + //{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. // Used by ntslapd.rc diff --git a/ldap/libraries/libutil/ntstubs.c b/ldap/libraries/libutil/ntstubs.c index e7adbf2e..393e269e 100644 --- a/ldap/libraries/libutil/ntstubs.c +++ b/ldap/libraries/libutil/ntstubs.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 + /****************************************************** * * ntstubs.c - Stubs needed on NT when linking in |