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 /include/nt | |
| parent | a765a367145893e3e28dc518f5d08dd9bdfa1358 (diff) | |
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/nt')
| -rw-r--r-- | include/nt/messages.h | 5 | ||||
| -rw-r--r-- | include/nt/nsapi.h | 5 | ||||
| -rw-r--r-- | include/nt/ntos.h | 5 | ||||
| -rw-r--r-- | include/nt/regparms.h | 5 | ||||
| -rw-r--r-- | include/nt/resource.h | 5 |
5 files changed, 25 insertions, 0 deletions
diff --git a/include/nt/messages.h b/include/nt/messages.h index ee519ba9..35fda4d3 100644 --- a/include/nt/messages.h +++ b/include/nt/messages.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 + /* Microsoft Developer Support Copyright (c) 1992 Microsoft Corporation diff --git a/include/nt/nsapi.h b/include/nt/nsapi.h index 09d4e134..460293ef 100644 --- a/include/nt/nsapi.h +++ b/include/nt/nsapi.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 + /* * Aruna Victor */ diff --git a/include/nt/ntos.h b/include/nt/ntos.h index 7d129d6c..7d971b7e 100644 --- a/include/nt/ntos.h +++ b/include/nt/ntos.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 + /********************************************************************** * ntOS.h - functionality used bt NT Operating System * diff --git a/include/nt/regparms.h b/include/nt/regparms.h index 8dcbc6ed..ccee49a8 100644 --- a/include/nt/regparms.h +++ b/include/nt/regparms.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 + // // // Name: regparms.h // // Platforms: WIN32 // diff --git a/include/nt/resource.h b/include/nt/resource.h index 2dcd3278..ce706980 100644 --- a/include/nt/resource.h +++ b/include/nt/resource.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 Visual C++ generated include file. // Used by netsite.rc |
