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/passthru | |
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/passthru')
-rw-r--r-- | ldap/servers/plugins/passthru/passthru.h | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptbind.c | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptconfig.c | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptconn.c | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptdebug.c | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptdllmain.c | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptpreop.c | 5 | ||||
-rw-r--r-- | ldap/servers/plugins/passthru/ptutil.c | 5 |
8 files changed, 40 insertions, 0 deletions
diff --git a/ldap/servers/plugins/passthru/passthru.h b/ldap/servers/plugins/passthru/passthru.h index 7ff32bdc..6f5a5435 100644 --- a/ldap/servers/plugins/passthru/passthru.h +++ b/ldap/servers/plugins/passthru/passthru.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 + /* * passthru.h - Pass Through Authentication shared definitions * diff --git a/ldap/servers/plugins/passthru/ptbind.c b/ldap/servers/plugins/passthru/ptbind.c index f3841c05..2cce0b57 100644 --- a/ldap/servers/plugins/passthru/ptbind.c +++ b/ldap/servers/plugins/passthru/ptbind.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 + /* * ptbind.c - LDAP bind-related code for Pass Through Authentication * diff --git a/ldap/servers/plugins/passthru/ptconfig.c b/ldap/servers/plugins/passthru/ptconfig.c index 3d7b3727..d25f363d 100644 --- a/ldap/servers/plugins/passthru/ptconfig.c +++ b/ldap/servers/plugins/passthru/ptconfig.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 + /* * ptconfig.c - configuration-related code for Pass Through Authentication * diff --git a/ldap/servers/plugins/passthru/ptconn.c b/ldap/servers/plugins/passthru/ptconn.c index 6d5cb979..f8b39c3e 100644 --- a/ldap/servers/plugins/passthru/ptconn.c +++ b/ldap/servers/plugins/passthru/ptconn.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 + /* * ptconn.c - LDAP connection-related code for Pass Through Authentication * diff --git a/ldap/servers/plugins/passthru/ptdebug.c b/ldap/servers/plugins/passthru/ptdebug.c index e603cf4c..f504aed2 100644 --- a/ldap/servers/plugins/passthru/ptdebug.c +++ b/ldap/servers/plugins/passthru/ptdebug.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 + /* * ptdebug.c - debugging-related code for Pass Through Authentication * diff --git a/ldap/servers/plugins/passthru/ptdllmain.c b/ldap/servers/plugins/passthru/ptdllmain.c index fe8b45e4..f3a7e88a 100644 --- a/ldap/servers/plugins/passthru/ptdllmain.c +++ b/ldap/servers/plugins/passthru/ptdllmain.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 + #include "ldap.h" #include "lber.h" #include "passthru.h" diff --git a/ldap/servers/plugins/passthru/ptpreop.c b/ldap/servers/plugins/passthru/ptpreop.c index df61f9a6..86d83fb7 100644 --- a/ldap/servers/plugins/passthru/ptpreop.c +++ b/ldap/servers/plugins/passthru/ptpreop.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 + /* * ptpreop.c - bind pre-operation plugin for Pass Through Authentication * diff --git a/ldap/servers/plugins/passthru/ptutil.c b/ldap/servers/plugins/passthru/ptutil.c index 82708dde..399e5b5a 100644 --- a/ldap/servers/plugins/passthru/ptutil.c +++ b/ldap/servers/plugins/passthru/ptutil.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 + /* * ptutil.c - utility functions for Pass Through Authentication * |