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/servers/plugins/retrocl | |
| 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/servers/plugins/retrocl')
| -rw-r--r-- | ldap/servers/plugins/retrocl/dllmain.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/linktest.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl.h | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl_cn.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl_create.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl_po.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl_rootdse.c | 5 | ||||
| -rw-r--r-- | ldap/servers/plugins/retrocl/retrocl_trim.c | 5 |
9 files changed, 45 insertions, 0 deletions
diff --git a/ldap/servers/plugins/retrocl/dllmain.c b/ldap/servers/plugins/retrocl/dllmain.c index 4de09ab2..1a089b2c 100644 --- a/ldap/servers/plugins/retrocl/dllmain.c +++ b/ldap/servers/plugins/retrocl/dllmain.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 + /* * Microsoft Windows specifics for LIBRETROCL DLL */ diff --git a/ldap/servers/plugins/retrocl/linktest.c b/ldap/servers/plugins/retrocl/linktest.c index e0e14595..e705cd35 100644 --- a/ldap/servers/plugins/retrocl/linktest.c +++ b/ldap/servers/plugins/retrocl/linktest.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + /* This is a test program. Not linked into the shared library */ #include "retrocl.h" diff --git a/ldap/servers/plugins/retrocl/retrocl.c b/ldap/servers/plugins/retrocl/retrocl.c index 77040f5d..bda04a65 100644 --- a/ldap/servers/plugins/retrocl/retrocl.c +++ b/ldap/servers/plugins/retrocl/retrocl.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + /* * Requires that create_instance.c have added a plugin entry similar to: diff --git a/ldap/servers/plugins/retrocl/retrocl.h b/ldap/servers/plugins/retrocl/retrocl.h index dfa71f59..4833d257 100644 --- a/ldap/servers/plugins/retrocl/retrocl.h +++ b/ldap/servers/plugins/retrocl/retrocl.h @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #ifndef _H_RETROCL #define _H_RETROCL 1 diff --git a/ldap/servers/plugins/retrocl/retrocl_cn.c b/ldap/servers/plugins/retrocl/retrocl_cn.c index 6978073a..9145bd91 100644 --- a/ldap/servers/plugins/retrocl/retrocl_cn.c +++ b/ldap/servers/plugins/retrocl/retrocl_cn.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include "retrocl.h" static changeNumber retrocl_internal_cn = 0; diff --git a/ldap/servers/plugins/retrocl/retrocl_create.c b/ldap/servers/plugins/retrocl/retrocl_create.c index 5f70e6a6..e4de45de 100644 --- a/ldap/servers/plugins/retrocl/retrocl_create.c +++ b/ldap/servers/plugins/retrocl/retrocl_create.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include "retrocl.h" /* diff --git a/ldap/servers/plugins/retrocl/retrocl_po.c b/ldap/servers/plugins/retrocl/retrocl_po.c index d8cce37f..a069fd9f 100644 --- a/ldap/servers/plugins/retrocl/retrocl_po.c +++ b/ldap/servers/plugins/retrocl/retrocl_po.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include "retrocl.h" static int diff --git a/ldap/servers/plugins/retrocl/retrocl_rootdse.c b/ldap/servers/plugins/retrocl/retrocl_rootdse.c index d7d23e14..c2e6e03e 100644 --- a/ldap/servers/plugins/retrocl/retrocl_rootdse.c +++ b/ldap/servers/plugins/retrocl/retrocl_rootdse.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include "retrocl.h" diff --git a/ldap/servers/plugins/retrocl/retrocl_trim.c b/ldap/servers/plugins/retrocl/retrocl_trim.c index a57d53aa..e8723b09 100644 --- a/ldap/servers/plugins/retrocl/retrocl_trim.c +++ b/ldap/servers/plugins/retrocl/retrocl_trim.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include "retrocl.h" |
