diff options
author | Kevin E Martin <kem@kem.org> | 2005-07-12 00:52:48 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-07-12 00:52:48 +0000 |
commit | e348ac4b4dfb1112c19fe5fe5441182e66716087 (patch) | |
tree | 7a134ecd815966046050ab8db2e42c7d5f826e3f /hw/dmx/config | |
parent | b7a9a6a03560bdf6584c71bf0b546301bba9ab89 (diff) |
Prepare Xdmx and Xvfb for modularization by adding appropriate #include
<{dix,dmx}-config.h> to the source files.
Diffstat (limited to 'hw/dmx/config')
-rw-r--r-- | hw/dmx/config/dmxcompat.c | 4 | ||||
-rw-r--r-- | hw/dmx/config/dmxconfig.c | 4 | ||||
-rw-r--r-- | hw/dmx/config/dmxparse.c | 4 | ||||
-rw-r--r-- | hw/dmx/config/dmxprint.c | 4 | ||||
-rw-r--r-- | hw/dmx/config/parser.y | 4 | ||||
-rw-r--r-- | hw/dmx/config/scanner.l | 4 |
6 files changed, 24 insertions, 0 deletions
diff --git a/hw/dmx/config/dmxcompat.c b/hw/dmx/config/dmxcompat.c index 3e6e6daeb..3681e8aa2 100644 --- a/hw/dmx/config/dmxcompat.c +++ b/hw/dmx/config/dmxcompat.c @@ -39,6 +39,10 @@ * This file is not used by the DMX server. */ +#ifdef HAVE_DMX_CONFIG_H +#include <dmx-config.h> +#endif + #include "dmxconfig.h" #include "dmxparse.h" #include "dmxcompat.h" diff --git a/hw/dmx/config/dmxconfig.c b/hw/dmx/config/dmxconfig.c index f276283a3..353ce11db 100644 --- a/hw/dmx/config/dmxconfig.c +++ b/hw/dmx/config/dmxconfig.c @@ -37,6 +37,10 @@ * combining that information with command-line configuration parameters. */ +#ifdef HAVE_DMX_CONFIG_H +#include <dmx-config.h> +#endif + #include "dmx.h" #include "dmxinput.h" #include "dmxconfig.h" diff --git a/hw/dmx/config/dmxparse.c b/hw/dmx/config/dmxparse.c index eed59cf57..1acb6d13e 100644 --- a/hw/dmx/config/dmxparse.c +++ b/hw/dmx/config/dmxparse.c @@ -41,6 +41,10 @@ * used in a stand-alone fashion (i.e., independent from the DMX server * source tree), no dependencies on other DMX routines are made. */ +#ifdef HAVE_DMX_CONFIG_H +#include <dmx-config.h> +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/hw/dmx/config/dmxprint.c b/hw/dmx/config/dmxprint.c index a269fab0e..ed3fc213d 100644 --- a/hw/dmx/config/dmxprint.c +++ b/hw/dmx/config/dmxprint.c @@ -41,6 +41,10 @@ * used in a stand-alone fashion (i.e., independent from the DMX server * source tree), no dependencies on other DMX routines are made. */ +#ifdef HAVE_DMX_CONFIG_H +#include <dmx-config.h> +#endif + #include "dmxconfig.h" #include "dmxparse.h" #include "dmxprint.h" diff --git a/hw/dmx/config/parser.y b/hw/dmx/config/parser.y index 6adcc8ec9..ac2441017 100644 --- a/hw/dmx/config/parser.y +++ b/hw/dmx/config/parser.y @@ -33,6 +33,10 @@ */ %{ +#ifdef HAVE_DMX_CONFIG_H +#include <dmx-config.h> +#endif + #include "dmxparse.h" #include <string.h> #include <stdlib.h> diff --git a/hw/dmx/config/scanner.l b/hw/dmx/config/scanner.l index fe6d3a15f..ec450243a 100644 --- a/hw/dmx/config/scanner.l +++ b/hw/dmx/config/scanner.l @@ -33,6 +33,10 @@ */ %{ +#ifdef HAVE_DMX_CONFIG_H +#include <dmx-config.h> +#endif + #include "dmxparse.h" #include "parser.h" #include <string.h> |