diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-06-18 08:52:47 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-06-24 06:23:44 -0700 |
commit | 1eafe8b65abaab94037f93196ec1512ab822b858 (patch) | |
tree | 56f13167adaacffcbe9d0942703d8c788907ac25 /xts5/lib | |
parent | 1ead05eb9ecf545b60ea6508a91414662e706033 (diff) |
Add config.h headers to all C files and mc stubs
This should allow the autoconf defines to be used consistently.
Diffstat (limited to 'xts5/lib')
-rw-r--r-- | xts5/lib/mc/mcinclude.mc | 4 | ||||
-rw-r--r-- | xts5/lib/mc/mcxcinc.mc | 5 | ||||
-rw-r--r-- | xts5/lib/mc/mcxpinc.mc | 4 | ||||
-rw-r--r-- | xts5/lib/mc/mcxtinc.mc | 6 |
4 files changed, 18 insertions, 1 deletions
diff --git a/xts5/lib/mc/mcinclude.mc b/xts5/lib/mc/mcinclude.mc index fd5e3b9c..b9fe79f3 100644 --- a/xts5/lib/mc/mcinclude.mc +++ b/xts5/lib/mc/mcinclude.mc @@ -1,5 +1,9 @@ /* $Header: /cvs/xtest/xtest/xts5/lib/mc/mcinclude.mc,v 1.2 2005-02-12 17:50:23 anderson Exp $ */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdlib.h> #include "xtest.h" #include "X11/Xlib.h" diff --git a/xts5/lib/mc/mcxcinc.mc b/xts5/lib/mc/mcxcinc.mc index fa6c7f50..822a3092 100644 --- a/xts5/lib/mc/mcxcinc.mc +++ b/xts5/lib/mc/mcxcinc.mc @@ -1,4 +1,9 @@ /* $Header: /cvs/xtest/xtest/xts5/lib/mc/mcxcinc.mc,v 1.1 2005-02-12 14:37:14 anderson Exp $ */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdio.h> #include <string.h> #include <locale.h> diff --git a/xts5/lib/mc/mcxpinc.mc b/xts5/lib/mc/mcxpinc.mc index bca56982..f3314774 100644 --- a/xts5/lib/mc/mcxpinc.mc +++ b/xts5/lib/mc/mcxpinc.mc @@ -1,5 +1,9 @@ /* $Header: /cvs/xtest/xtest/xts5/lib/mc/mcxpinc.mc,v 1.1 2005-02-12 14:37:14 anderson Exp $ */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdlib.h> #include "xtest.h" #include "tet_api.h" diff --git a/xts5/lib/mc/mcxtinc.mc b/xts5/lib/mc/mcxtinc.mc index 0ffbe735..7715092e 100644 --- a/xts5/lib/mc/mcxtinc.mc +++ b/xts5/lib/mc/mcxtinc.mc @@ -1,3 +1,7 @@ - /* $Header: /cvs/xtest/xtest/xts5/lib/mc/mcxtinc.mc,v 1.1 2005-02-12 14:37:14 anderson Exp $ */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <XtTest.h> |