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/systools | |
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/systools')
-rw-r--r-- | ldap/systools/hp_patches.c | 5 | ||||
-rw-r--r-- | ldap/systools/idsktune.c | 5 | ||||
-rw-r--r-- | ldap/systools/pio.c | 5 | ||||
-rw-r--r-- | ldap/systools/pio.h | 5 | ||||
-rw-r--r-- | ldap/systools/sol_patches.c | 5 | ||||
-rw-r--r-- | ldap/systools/viewcore.c | 5 |
6 files changed, 30 insertions, 0 deletions
diff --git a/ldap/systools/hp_patches.c b/ldap/systools/hp_patches.c index 70a2d6bd..f47637c7 100644 --- a/ldap/systools/hp_patches.c +++ b/ldap/systools/hp_patches.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 + {"PHSS_30966","1.0","ld(1) and linker tools cumulative patch",0,0,0}, {"PHSS_29486","1.0","KRB5-Client Version 1.0 cumulative patch",0,0,0}, {"PHSS_29487","1.0","GSS-API Version 1.0 Cumulative patch",0,0,0}, diff --git a/ldap/systools/idsktune.c b/ldap/systools/idsktune.c index 8d90160f..160ac929 100644 --- a/ldap/systools/idsktune.c +++ b/ldap/systools/idsktune.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * Don't forget to update build_date when the patch sets are updated. * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ diff --git a/ldap/systools/pio.c b/ldap/systools/pio.c index 3c0b65b1..42e66fb1 100644 --- a/ldap/systools/pio.c +++ b/ldap/systools/pio.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include "pio.h" #include <ctype.h> #include <string.h> diff --git a/ldap/systools/pio.h b/ldap/systools/pio.h index 80d65d56..6cb05d55 100644 --- a/ldap/systools/pio.h +++ b/ldap/systools/pio.h @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #ifndef _H_III_PIO_H #define _H_III_PIO_H diff --git a/ldap/systools/sol_patches.c b/ldap/systools/sol_patches.c index 0b41091d..01d2f0b2 100644 --- a/ldap/systools/sol_patches.c +++ b/ldap/systools/sol_patches.c @@ -36,6 +36,11 @@ * All rights reserved. * --- END COPYRIGHT BLOCK --- */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + /* This list was generated by /u/norikoyasuo/bin/getSolPatches.pl */ /* on droid.mcom.com */ /* at Thu Mar 18 18:34:27 2004 GMT */ diff --git a/ldap/systools/viewcore.c b/ldap/systools/viewcore.c index adad4638..45e4cce5 100644 --- a/ldap/systools/viewcore.c +++ b/ldap/systools/viewcore.c @@ -36,6 +36,11 @@ * All rights reserved. * END COPYRIGHT BLOCK **/ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + + #include <fcntl.h> #include <stdio.h> #ifdef linux |